summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/simpleviewerexport/firstrundlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-10 10:11:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 18:47:55 +0900
commitb74930c0a10ba45c28e0f6ffc7b5cd95f17bceb0 (patch)
treee834bbf0227ba64bd3a80111b3f1e501a13f3c59 /kipi-plugins/simpleviewerexport/firstrundlg.cpp
parente169e36ac68f10b7005429910714aa21c5235ac3 (diff)
downloadkipi-plugins-b74930c0a10ba45c28e0f6ffc7b5cd95f17bceb0.tar.gz
kipi-plugins-b74930c0a10ba45c28e0f6ffc7b5cd95f17bceb0.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9d73fae3fa66ac8c2563ae42fd403fb0ba449eae)
Diffstat (limited to 'kipi-plugins/simpleviewerexport/firstrundlg.cpp')
-rw-r--r--kipi-plugins/simpleviewerexport/firstrundlg.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/simpleviewerexport/firstrundlg.cpp b/kipi-plugins/simpleviewerexport/firstrundlg.cpp
index 4548f74..8450702 100644
--- a/kipi-plugins/simpleviewerexport/firstrundlg.cpp
+++ b/kipi-plugins/simpleviewerexport/firstrundlg.cpp
@@ -90,7 +90,7 @@ FirstRunDlg::FirstRunDlg(TQWidget *parent)
KHelpMenu* helpMenu = new KHelpMenu(this, m_about, false);
helpMenu->menu()->removeItemAt(0);
helpMenu->menu()->insertItem(i18n("Plugin Handbook"),
- this, TQT_SLOT(slotHelp()), 0, -1, 0);
+ this, TQ_SLOT(slotHelp()), 0, -1, 0);
actionButton(Help)->setPopup( helpMenu->menu() );
// ---------------------------------------------------------------
@@ -117,8 +117,8 @@ FirstRunDlg::FirstRunDlg(TQWidget *parent)
link->setText("http://www.airtightinteractive.com/simpleviewer");
link->setURL("http://www.airtightinteractive.com/simpleviewer");
topLayout->addWidget(link);
- connect(link, TQT_SIGNAL(leftClickedURL(const TQString &)),
- this, TQT_SLOT(slotDownload(const TQString &)));
+ connect(link, TQ_SIGNAL(leftClickedURL(const TQString &)),
+ this, TQ_SLOT(slotDownload(const TQString &)));
info = new TQLabel(page);
info->setText(i18n("<p>2.) Point this tool to the downloaded archive</p>"));
@@ -126,8 +126,8 @@ FirstRunDlg::FirstRunDlg(TQWidget *parent)
m_urlRequester = new KURLRequester(page);
topLayout->addWidget(m_urlRequester);
- connect(m_urlRequester, TQT_SIGNAL(urlSelected(const TQString&)),
- this, TQT_SLOT(slotURLSelected(const TQString&)));
+ connect(m_urlRequester, TQ_SIGNAL(urlSelected(const TQString&)),
+ this, TQ_SLOT(slotURLSelected(const TQString&)));
topLayout->addStretch(10);
}