diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 11:55:18 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 11:55:18 +0900 |
commit | f57d24985e5b3c8b8c070388aedf6fa915b1c316 (patch) | |
tree | aa86157b321acf5f8fb5385aac72142500d16bdf /src/translators/xsltexporter.cpp | |
parent | 30d2f3d2750a4ddee216eb64380781e593de6b25 (diff) | |
download | tellico-f57d24985e5b3c8b8c070388aedf6fa915b1c316.tar.gz tellico-f57d24985e5b3c8b8c070388aedf6fa915b1c316.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/translators/xsltexporter.cpp')
-rw-r--r-- | src/translators/xsltexporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translators/xsltexporter.cpp b/src/translators/xsltexporter.cpp index 96fa7f1..6623cc4 100644 --- a/src/translators/xsltexporter.cpp +++ b/src/translators/xsltexporter.cpp @@ -71,7 +71,7 @@ TQWidget* XSLTExporter::widget(TQWidget* parent_, const char* name_/*=0*/) { m_widget = new TQWidget(parent_, name_); TQVBoxLayout* l = new TQVBoxLayout(m_widget); - TQGroupBox* group = new TQGroupBox(1, Qt::Horizontal, i18n("XSLT Options"), m_widget); + TQGroupBox* group = new TQGroupBox(1, TQt::Horizontal, i18n("XSLT Options"), m_widget); l->addWidget(group); TQHBox* box = new TQHBox(group); |