summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/simpleviewerexport/firstrundlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/simpleviewerexport/firstrundlg.h')
-rw-r--r--kipi-plugins/simpleviewerexport/firstrundlg.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/kipi-plugins/simpleviewerexport/firstrundlg.h b/kipi-plugins/simpleviewerexport/firstrundlg.h
index ea0b16d..9eac767 100644
--- a/kipi-plugins/simpleviewerexport/firstrundlg.h
+++ b/kipi-plugins/simpleviewerexport/firstrundlg.h
@@ -36,7 +36,7 @@
#include "kpaboutdata.h"
-class QString;
+class TQString;
class KURLRequester;
@@ -53,34 +53,35 @@ namespace KIPISimpleViewerExportPlugin
class FirstRunDlg : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- FirstRunDlg(QWidget *parent=0);
+ FirstRunDlg(TQWidget *tqparent=0);
~FirstRunDlg();
/**
* Returns the URL, where the SimpleViewer package is stored
*/
- QString getURL();
+ TQString getURL();
private slots:
/**
* Opens the browser with the SimpleViewer download page
*/
- void slotDownload(const QString &url);
+ void slotDownload(const TQString &url);
/**
* Starts the installation of SimpleViewer
*/
- void slotURLSelected(const QString &url);
+ void slotURLSelected(const TQString &url);
void slotHelp();
private:
- QString m_url;
+ TQString m_url;
KURLRequester *m_urlRequester;