summaryrefslogtreecommitdiffstats
path: root/ktouch/src/ktouchopenrequest.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:44:41 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:44:41 +0000
commita374efce3a207b39514be3c52264091400ce297e (patch)
tree77bdf654b55826d4f59b53a5621310206bcaead1 /ktouch/src/ktouchopenrequest.h
parentf81a494f3957d5cf38c787973415597941934727 (diff)
downloadtdeedu-a374efce3a207b39514be3c52264091400ce297e.tar.gz
tdeedu-a374efce3a207b39514be3c52264091400ce297e.zip
TQt4 port kdeedu
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1236073 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktouch/src/ktouchopenrequest.h')
-rw-r--r--ktouch/src/ktouchopenrequest.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ktouch/src/ktouchopenrequest.h b/ktouch/src/ktouchopenrequest.h
index 8f1c31d0..c66f9f02 100644
--- a/ktouch/src/ktouchopenrequest.h
+++ b/ktouch/src/ktouchopenrequest.h
@@ -52,17 +52,18 @@
///
class KTouchOpenRequest : public KTouchOpenRequestDlg {
Q_OBJECT
+ TQ_OBJECT
public:
/// Default constructor.
- KTouchOpenRequest(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
+ KTouchOpenRequest(TQWidget* tqparent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
/// Default destructor.
~KTouchOpenRequest() {}
/// Sets up the dialog and runs it.
/// @return Returns the dialogs return code, TQDialog::Accepted or TQDialog::Rejected.
int requestFileToOpen(KURL& url, const TQString& caption, const TQString& title, const TQString& currentText,
const TQString& defaultText, const TQString& openText, const TQString& newText,
- KURL current_url = TQString::null, TQStringList defaultList = TQStringList(), TQString emptyListText = TQString::null);
+ KURL current_url = TQString(), TQStringList defaultList = TQStringList(), TQString emptyListText = TQString());
/// After the dialog has been accepted the URL chosen by the user is stored herein.
KURL m_url;