summaryrefslogtreecommitdiffstats
path: root/sip/kfile/knotifydialog.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/kfile/knotifydialog.sip')
-rw-r--r--sip/kfile/knotifydialog.sip12
1 files changed, 6 insertions, 6 deletions
diff --git a/sip/kfile/knotifydialog.sip b/sip/kfile/knotifydialog.sip
index ebf00fe..5787bb2 100644
--- a/sip/kfile/knotifydialog.sip
+++ b/sip/kfile/knotifydialog.sip
@@ -34,9 +34,9 @@ class KNotifyDialog : KDialogBase
public:
- KNotifyDialog (TQWidget* /TransferThis/ = 0, const char* = 0, bool = 1, const KAboutData* = 0);
+ KNotifyDialog (TQWidget* /TransferThis/ = 0, const char* = 0, bool = 1, const TDEAboutData* = 0);
%MethodCode
-//takes parent | (TQWidget = 0) | name | (char = 0) | modal | (bool = 1) | aboutData | (KAboutData = see note)
+//takes parent | (TQWidget = 0) | name | (char = 0) | modal | (bool = 1) | aboutData | (TDEAboutData = see note)
//doc
// The default value for aboutData in C++ is KGlobal::instance()->aboutData()
// which sip is unable to parse. Since it's the last arg in the list, it has
@@ -46,17 +46,17 @@ public:
//end
if (a3 == 0)
- a3 = (KAboutData *)KGlobal::instance ()->aboutData ();
+ a3 = (TDEAboutData *)KGlobal::instance ()->aboutData ();
Py_BEGIN_ALLOW_THREADS
sipCpp = new sipKNotifyDialog (a0, a1, a2, a3);
Py_END_ALLOW_THREADS
%End
- static int configure (TQWidget* /Transfer/ = 0, const char* = 0, const KAboutData* = 0);
+ static int configure (TQWidget* /Transfer/ = 0, const char* = 0, const TDEAboutData* = 0);
%MethodCode
//returns (int)
-//takes parent | (TQWidget = 0) | name | (a Python string = "") | aboutData | (KAboutData = see note)
+//takes parent | (TQWidget = 0) | name | (a Python string = "") | aboutData | (TDEAboutData = see note)
//doc
// The default value for aboutData in C++ is KGlobal::instance()->aboutData()
// which sip is unable to parse. Since it's the last arg in the list, it has
@@ -66,7 +66,7 @@ public:
//end
if (a2 == 0)
- a2 = (KAboutData *)KGlobal::instance ()->aboutData ();
+ a2 = (TDEAboutData *)KGlobal::instance ()->aboutData ();
Py_BEGIN_ALLOW_THREADS
sipRes = KNotifyDialog::configure (a0, a1, a2);