diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 11:55:18 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 20:59:31 +0900 |
commit | 034ed63e8dcd4071ff2857fb066f90b60313216f (patch) | |
tree | d8f02d03c1f9c77442c59c55ea75f5cb6539dec4 /src/translators/csvexporter.cpp | |
parent | 59252e910c0a40943329918aeead9293d5ee82e0 (diff) | |
download | tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.tar.gz tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit f57d24985e5b3c8b8c070388aedf6fa915b1c316)
Diffstat (limited to 'src/translators/csvexporter.cpp')
-rw-r--r-- | src/translators/csvexporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/translators/csvexporter.cpp b/src/translators/csvexporter.cpp index 7c64bf1..301f0e5 100644 --- a/src/translators/csvexporter.cpp +++ b/src/translators/csvexporter.cpp @@ -106,7 +106,7 @@ TQWidget* CSVExporter::widget(TQWidget* parent_, const char* name_/*=0*/) { m_widget = new TQWidget(parent_, name_); TQVBoxLayout* l = new TQVBoxLayout(m_widget); - TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("CSV Options"), m_widget); + TQGroupBox* box = new TQGroupBox(1, TQt::Horizontal, i18n("CSV Options"), m_widget); l->addWidget(box); m_checkIncludeTitles = new TQCheckBox(i18n("Include field titles as column headers"), box); @@ -114,7 +114,7 @@ TQWidget* CSVExporter::widget(TQWidget* parent_, const char* name_/*=0*/) { TQWhatsThis::add(m_checkIncludeTitles, i18n("If checked, a header row will be added with the " "field titles.")); - TQButtonGroup* delimiterGroup = new TQButtonGroup(0, Qt::Vertical, i18n("Delimiter"), box); + TQButtonGroup* delimiterGroup = new TQButtonGroup(0, TQt::Vertical, i18n("Delimiter"), box); TQGridLayout* m_delimiterGroupLayout = new TQGridLayout(delimiterGroup->layout()); m_delimiterGroupLayout->setAlignment(TQt::AlignTop); TQWhatsThis::add(delimiterGroup, i18n("In addition to a comma, other characters may be used as " |