diff options
Diffstat (limited to 'src/gui/dialogs/KeySignatureDialog.cpp')
-rw-r--r-- | src/gui/dialogs/KeySignatureDialog.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/dialogs/KeySignatureDialog.cpp b/src/gui/dialogs/KeySignatureDialog.cpp index 95d60ce..b0d42f1 100644 --- a/src/gui/dialogs/KeySignatureDialog.cpp +++ b/src/gui/dialogs/KeySignatureDialog.cpp @@ -72,16 +72,16 @@ KeySignatureDialog::KeySignatureDialog(TQWidget *parent, TQHBox *nameBox = 0; TQGroupBox *keyFrame = new TQGroupBox - (1, Qt::Horizontal, i18n("Key signature"), vbox); + (1, TQt::Horizontal, i18n("Key signature"), vbox); TQGroupBox *transposeFrame = new TQButtonGroup - (1, Qt::Horizontal, i18n("Key transposition"), vbox); + (1, TQt::Horizontal, i18n("Key transposition"), vbox); TQGroupBox *buttonFrame = new TQButtonGroup - (1, Qt::Horizontal, i18n("Scope"), vbox); + (1, TQt::Horizontal, i18n("Scope"), vbox); TQButtonGroup *conversionFrame = new TQButtonGroup - (1, Qt::Horizontal, i18n("Existing notes following key change"), vbox); + (1, TQt::Horizontal, i18n("Existing notes following key change"), vbox); keyBox = new TQHBox(keyFrame); nameBox = new TQHBox(keyFrame); @@ -91,14 +91,14 @@ KeySignatureDialog::KeySignatureDialog(TQWidget *parent, explanatoryLabel = new TQLabel(explanatoryText, keyFrame); } - BigArrowButton *keyDown = new BigArrowButton(keyBox, Qt::LeftArrow); + BigArrowButton *keyDown = new BigArrowButton(keyBox, TQt::LeftArrow); TQToolTip::add (keyDown, i18n("Flatten")); m_keyLabel = new TQLabel(i18n("Key"), keyBox); m_keyLabel->setAlignment(AlignVCenter | AlignHCenter); - BigArrowButton *keyUp = new BigArrowButton(keyBox, Qt::RightArrow); + BigArrowButton *keyUp = new BigArrowButton(keyBox, TQt::RightArrow); TQToolTip::add (keyUp, i18n("Sharpen")); |