diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:31:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:31:17 +0900 |
commit | c650254e1855d383dcafd15d18be20becc3b2253 (patch) | |
tree | 9c221c2e920b1f8e9098c6047d948833277659de /src/exportdialog.cpp | |
parent | 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff) | |
download | tellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/exportdialog.cpp')
-rw-r--r-- | src/exportdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exportdialog.cpp b/src/exportdialog.cpp index 350a011..3970111 100644 --- a/src/exportdialog.cpp +++ b/src/exportdialog.cpp @@ -88,7 +88,7 @@ ExportDialog::ExportDialog(Export::Format format_, Data::CollPtr coll_, TQWidget } else if(format_ == Export::Alexandria || format_ == Export::PilotDB) { bg->setEnabled(false); } - connect(this, TQT_SIGNAL(okClicked()), TQT_SLOT(slotSaveOptions())); + connect(this, TQ_SIGNAL(okClicked()), TQ_SLOT(slotSaveOptions())); } ExportDialog::~ExportDialog() { |