summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/KeySignatureDialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:32:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:32:44 +0900
commit1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6 (patch)
tree7cd9102a8ca3bcb3ffaa566d7302ad15e580d757 /src/gui/dialogs/KeySignatureDialog.cpp
parent3d3dc041a570cd26154510785f50ffcd8cf56005 (diff)
downloadrosegarden-1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6.tar.gz
rosegarden-1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/dialogs/KeySignatureDialog.cpp')
-rw-r--r--src/gui/dialogs/KeySignatureDialog.cpp12
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"));