From 1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 4 Nov 2023 23:32:44 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro --- src/gui/dialogs/TextEventDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/dialogs/TextEventDialog.cpp') 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); -- cgit v1.2.3