diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 23:32:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-04 23:32:44 +0900 |
commit | 1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6 (patch) | |
tree | 7cd9102a8ca3bcb3ffaa566d7302ad15e580d757 /src/gui/dialogs/TextEventDialog.cpp | |
parent | 3d3dc041a570cd26154510785f50ffcd8cf56005 (diff) | |
download | rosegarden-1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6.tar.gz rosegarden-1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/gui/dialogs/TextEventDialog.cpp')
-rw-r--r-- | src/gui/dialogs/TextEventDialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/dialogs/TextEventDialog.cpp b/src/gui/dialogs/TextEventDialog.cpp index eb135cd..fb6908f 100644 --- a/src/gui/dialogs/TextEventDialog.cpp +++ b/src/gui/dialogs/TextEventDialog.cpp @@ -61,11 +61,11 @@ TextEventDialog::TextEventDialog(TQWidget *parent, TQVBox *vbox = makeVBoxMainWidget(); TQGroupBox *entryBox = new TQGroupBox - (1, Qt::Horizontal, i18n("Specification"), vbox); + (1, TQt::Horizontal, i18n("Specification"), vbox); TQGroupBox *exampleBox = new TQGroupBox - (1, Qt::Horizontal, i18n("Preview"), vbox); + (1, TQt::Horizontal, i18n("Preview"), vbox); - TQGrid *entryGrid = new TQGrid(2, Qt::Horizontal, entryBox); + TQGrid *entryGrid = new TQGrid(2, TQt::Horizontal, entryBox); new TQLabel(i18n("Text: "), entryGrid); m_text = new TQLineEdit(entryGrid); |