summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/simpleviewerexport/firstrundlg.cpp
diff options
context:
space:
mode:
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);
}