diff options
Diffstat (limited to 'sip/kfile/knotifydialog.sip')
-rw-r--r-- | sip/kfile/knotifydialog.sip | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sip/kfile/knotifydialog.sip b/sip/kfile/knotifydialog.sip index 5787bb2..ad16340 100644 --- a/sip/kfile/knotifydialog.sip +++ b/sip/kfile/knotifydialog.sip @@ -38,7 +38,7 @@ public: %MethodCode //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() +// The default value for aboutData in C++ is TDEGlobal::instance()->aboutData() // which sip is unable to parse. Since it's the last arg in the list, it has // to have a default value, and since the C++ code will fail if the default // value really is zero, the sip code silently substitutes the real default @@ -46,7 +46,7 @@ public: //end if (a3 == 0) - a3 = (TDEAboutData *)KGlobal::instance ()->aboutData (); + a3 = (TDEAboutData *)TDEGlobal::instance ()->aboutData (); Py_BEGIN_ALLOW_THREADS sipCpp = new sipKNotifyDialog (a0, a1, a2, a3); @@ -58,7 +58,7 @@ public: //returns (int) //takes parent | (TQWidget = 0) | name | (a Python string = "") | aboutData | (TDEAboutData = see note) //doc -// The default value for aboutData in C++ is KGlobal::instance()->aboutData() +// The default value for aboutData in C++ is TDEGlobal::instance()->aboutData() // which sip is unable to parse. Since it's the last arg in the list, it has // to have a default value, and since the C++ code will fail if the default // value really is zero, the sip code silently substitutes the real default @@ -66,7 +66,7 @@ public: //end if (a2 == 0) - a2 = (TDEAboutData *)KGlobal::instance ()->aboutData (); + a2 = (TDEAboutData *)TDEGlobal::instance ()->aboutData (); Py_BEGIN_ALLOW_THREADS sipRes = KNotifyDialog::configure (a0, a1, a2); |