summaryrefslogtreecommitdiffstats
path: root/krusader/Konfigurator/krresulttabledialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-03 02:49:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-03 02:49:54 +0000
commit6ffad5a006df848f5e9a80ca31e5faec8ed65e62 (patch)
tree3757770dc3586efff30fdfe30f7e36b64ab883f1 /krusader/Konfigurator/krresulttabledialog.h
parent1359f43e963c10d08c6c78f4806da291ca216bfe (diff)
downloadkrusader-6ffad5a006df848f5e9a80ca31e5faec8ed65e62.tar.gz
krusader-6ffad5a006df848f5e9a80ca31e5faec8ed65e62.zip
TQt4 port krusader
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/krusader@1239136 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krusader/Konfigurator/krresulttabledialog.h')
-rw-r--r--krusader/Konfigurator/krresulttabledialog.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/krusader/Konfigurator/krresulttabledialog.h b/krusader/Konfigurator/krresulttabledialog.h
index fe1b85a..1014282 100644
--- a/krusader/Konfigurator/krresulttabledialog.h
+++ b/krusader/Konfigurator/krresulttabledialog.h
@@ -31,12 +31,12 @@
#ifndef KRRESULTTABLEDIALOG_H
#define KRRESULTTABLEDIALOG_H
-#include <qlabel.h>
-#include <qvbox.h>
-#include <qhbox.h>
-#include <qlayout.h>
-#include <qstringlist.h>
-#include <qvaluevector.h>
+#include <tqlabel.h>
+#include <tqvbox.h>
+#include <tqhbox.h>
+#include <tqlayout.h>
+#include <tqstringlist.h>
+#include <tqvaluevector.h>
#include <kdialogbase.h>
#include <kiconloader.h>
@@ -60,24 +60,24 @@ public:
Tool = 2
};
- KrResultTableDialog(QWidget *parent, DialogType type, const QString& caption, const QString& heading, const QString& headerIcon=QString::null, const QString& hint=QString::null);
+ KrResultTableDialog(TQWidget *tqparent, DialogType type, const TQString& caption, const TQString& heading, const TQString& headerIcon=TQString(), const TQString& hint=TQString());
virtual ~KrResultTableDialog();
- const QString& getHeading() const { return _heading; }
- const QString& getHint() const { return _hint; }
- void setHeading(const QString& s) { _heading = s; }
- void setHint(const QString& s) { _hint = s; }
+ const TQString& getHeading() const { return _heading; }
+ const TQString& getHint() const { return _hint; }
+ void setHeading(const TQString& s) { _heading = s; }
+ void setHint(const TQString& s) { _hint = s; }
protected:
- QString _heading;
- QString _hint;
+ TQString _heading;
+ TQString _hint;
- QLabel* _headingLabel;
- QLabel* _iconLabel;
- QLabel* _hintLabel;
- QHBox* _iconBox;
- QWidget* _page;
- QVBoxLayout* _topLayout;
+ TQLabel* _headingLabel;
+ TQLabel* _iconLabel;
+ TQLabel* _hintLabel;
+ TQHBox* _iconBox;
+ TQWidget* _page;
+ TQVBoxLayout* _topLayout;
KrResultTable* _resultTable;
};