diff options
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); |