diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:55:18 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 20:59:31 +0900 |
| commit | 034ed63e8dcd4071ff2857fb066f90b60313216f (patch) | |
| tree | d8f02d03c1f9c77442c59c55ea75f5cb6539dec4 /src/exportdialog.cpp | |
| parent | 59252e910c0a40943329918aeead9293d5ee82e0 (diff) | |
| download | tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.tar.gz tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f57d24985e5b3c8b8c070388aedf6fa915b1c316)
Diffstat (limited to 'src/exportdialog.cpp')
| -rw-r--r-- | src/exportdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exportdialog.cpp b/src/exportdialog.cpp index 7ec7afe..350a011 100644 --- a/src/exportdialog.cpp +++ b/src/exportdialog.cpp @@ -50,7 +50,7 @@ ExportDialog::ExportDialog(Export::Format format_, Data::CollPtr coll_, TQWidget TQWidget* widget = new TQWidget(this); TQVBoxLayout* topLayout = new TQVBoxLayout(widget, 0, spacingHint()); - TQGroupBox* group1 = new TQGroupBox(1, Qt::Horizontal, i18n("Formatting"), widget); + TQGroupBox* group1 = new TQGroupBox(1, TQt::Horizontal, i18n("Formatting"), widget); topLayout->addWidget(group1, 0); m_formatFields = new TQCheckBox(i18n("Format all fields"), group1); m_formatFields->setChecked(false); @@ -61,7 +61,7 @@ ExportDialog::ExportDialog(Export::Format format_, Data::CollPtr coll_, TQWidget TQWhatsThis::add(m_exportSelected, i18n("If checked, only the currently selected entries will " "be exported.")); - TQButtonGroup* bg = new TQButtonGroup(1, Qt::Horizontal, i18n("Encoding"), widget); + TQButtonGroup* bg = new TQButtonGroup(1, TQt::Horizontal, i18n("Encoding"), widget); topLayout->addWidget(bg, 0); m_encodeUTF8 = new TQRadioButton(i18n("Encode in Unicode (UTF-8)"), bg); m_encodeUTF8->setChecked(true); |
