diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:14:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:14:51 -0600 |
commit | ef13416bfc43e51ef4e20919e0fab81ae05e0fe2 (patch) | |
tree | 76bc36e1cbecae4d7811b5605adfb0804d0041f9 /src/gui/widgets/TimeWidget.cpp | |
parent | 6ca08e7a881c0c97f338e0085f75af04ec08ad04 (diff) | |
download | rosegarden-ef13416bfc43e51ef4e20919e0fab81ae05e0fe2.tar.gz rosegarden-ef13416bfc43e51ef4e20919e0fab81ae05e0fe2.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/gui/widgets/TimeWidget.cpp')
-rw-r--r-- | src/gui/widgets/TimeWidget.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/widgets/TimeWidget.cpp b/src/gui/widgets/TimeWidget.cpp index 82877f8..3a2a024 100644 --- a/src/gui/widgets/TimeWidget.cpp +++ b/src/gui/widgets/TimeWidget.cpp @@ -99,7 +99,7 @@ TimeWidget::init(bool editable) if (m_isDuration) { label = new TQLabel(i18n("Note:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 0, 0); if (editable) { @@ -149,7 +149,7 @@ TimeWidget::init(bool editable) } label = new TQLabel(i18n("Units:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 0, 4); if (editable) { @@ -171,7 +171,7 @@ TimeWidget::init(bool editable) m_note = 0; label = new TQLabel(i18n("Time:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 0, 0); if (editable) { @@ -191,7 +191,7 @@ TimeWidget::init(bool editable) } label = new TQLabel(m_isDuration ? i18n("Measures:") : i18n("Measure:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 1, 0); if (editable) { @@ -210,7 +210,7 @@ TimeWidget::init(bool editable) } label = new TQLabel(m_isDuration ? i18n("beats:") : i18n("beat:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 1, 2); if (editable) { @@ -231,7 +231,7 @@ TimeWidget::init(bool editable) (Note (Note::Shortest), true)), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 1, 4); if (editable) { @@ -252,7 +252,7 @@ TimeWidget::init(bool editable) tqlayout->addWidget(m_timeSig, 1, 6); label = new TQLabel(i18n("Seconds:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 2, 0); if (editable) { @@ -271,7 +271,7 @@ TimeWidget::init(bool editable) } label = new TQLabel(i18n("msec:"), frame); - label->tqsetAlignment(TQt::AlignRight | TQt::AlignVCenter); + label->setAlignment(TQt::AlignRight | TQt::AlignVCenter); tqlayout->addWidget(label, 2, 2); if (editable) { |