diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-05-06 14:14:10 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-05-06 14:14:10 -0500 |
commit | 4ff6a82b0a192d224100ac8526c19e1b52ede0e6 (patch) | |
tree | f585437cb3541fbeb2286d03676180db563f8dfa /sip/tdecore | |
parent | 033dd869b108bb65633e9994b69a3ef3b4ca9b64 (diff) | |
download | pytde-4ff6a82b0a192d224100ac8526c19e1b52ede0e6.tar.gz pytde-4ff6a82b0a192d224100ac8526c19e1b52ede0e6.zip |
GCC 4.7 fixes.
Thanks to Francois Andriot.
Diffstat (limited to 'sip/tdecore')
-rw-r--r-- | sip/tdecore/kaccel.sip | 2 | ||||
-rw-r--r-- | sip/tdecore/kaccelbase.sip | 2 | ||||
-rw-r--r-- | sip/tdecore/kglobalaccel.sip | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sip/tdecore/kaccel.sip b/sip/tdecore/kaccel.sip index 54655a7..a91fa25 100644 --- a/sip/tdecore/kaccel.sip +++ b/sip/tdecore/kaccel.sip @@ -35,7 +35,7 @@ public: KAccel (TQWidget* /TransferThis/, const char* = 0); KAccel (TQWidget*, TQObject* /TransferThis/, const char* = 0); KAccelActions& actions (); - bool isEnabled () const; + bool isEnabled (); void setEnabled (bool); bool setAutoUpdate (bool); diff --git a/sip/tdecore/kaccelbase.sip b/sip/tdecore/kaccelbase.sip index 55080e7..23c303f 100644 --- a/sip/tdecore/kaccelbase.sip +++ b/sip/tdecore/kaccelbase.sip @@ -48,7 +48,7 @@ public: KAccelBase (int); uint actionCount () const; KAccelActions& actions (); - bool isEnabled () const; + bool isEnabled (); KAccelAction* actionPtr (const TQString&); KAccelAction* actionPtr (const KKey&); KAccelAction* actionPtr (const KKeyServer::Key&); diff --git a/sip/tdecore/kglobalaccel.sip b/sip/tdecore/kglobalaccel.sip index 4428a3c..e90fa50 100644 --- a/sip/tdecore/kglobalaccel.sip +++ b/sip/tdecore/kglobalaccel.sip @@ -33,7 +33,7 @@ class KGlobalAccel : TQObject public: KGlobalAccel (TQObject*, const char* = 0); - bool isEnabled () const; + bool isEnabled (); void setEnabled (bool); KAccelAction* insert (const TQString&, const TQString&, const TQString&, const KShortcut&, const KShortcut&, SIP_RXOBJ_CON, SIP_SLOT_CON (), bool = 1, bool = 1); |