diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:09:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:09:42 -0600 |
commit | 2df6bde18ab40472f2df8637cf6456cb80dc2329 (patch) | |
tree | 5a4362124ff46786fce835d2f1e7d583c92a5670 /sip/tdecore/kshortcut.sip | |
parent | be6cfa4b990910e65e8d2f4f212eba3f7da6ee72 (diff) | |
download | pytde-2df6bde18ab40472f2df8637cf6456cb80dc2329.tar.gz pytde-2df6bde18ab40472f2df8637cf6456cb80dc2329.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'sip/tdecore/kshortcut.sip')
-rw-r--r-- | sip/tdecore/kshortcut.sip | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sip/tdecore/kshortcut.sip b/sip/tdecore/kshortcut.sip index 4f7ca1c..4eb2d03 100644 --- a/sip/tdecore/kshortcut.sip +++ b/sip/tdecore/kshortcut.sip @@ -182,7 +182,7 @@ public: }; // class KKeySequence -class KShortcut +class TDEShortcut { %TypeHeaderCode #include <kshortcut.h> @@ -196,31 +196,31 @@ public: MAX_SEQUENCES }; - KShortcut (); - KShortcut (int); - KShortcut (const TQKeySequence&); - KShortcut (const KKey&); - KShortcut (const KKeySequence&); - KShortcut (const KShortcut&); - KShortcut (const char*); - KShortcut (const TQString&); + TDEShortcut (); + TDEShortcut (int); + TDEShortcut (const TQKeySequence&); + TDEShortcut (const KKey&); + TDEShortcut (const KKeySequence&); + TDEShortcut (const TDEShortcut&); + TDEShortcut (const char*); + TDEShortcut (const TQString&); void clear (); bool init (int); bool init (const TQKeySequence&); bool init (const KKey&); bool init (const KKeySequence&); - bool init (const KShortcut&); + bool init (const TDEShortcut&); bool init (const TQString&); uint count () const; const KKeySequence& seq (uint) const; int keyCodeQt () const; bool isNull () const; - int compare (const KShortcut&) const; + int compare (const TDEShortcut&) const; %If ( KDE_3_1_4 - ) - bool operator == (const KShortcut&) const; - bool operator != (const KShortcut&) const; - bool operator < (const KShortcut&) const; + bool operator == (const TDEShortcut&) const; + bool operator != (const TDEShortcut&) const; + bool operator < (const TDEShortcut&) const; %End bool contains (const KKey&) const; @@ -236,7 +236,7 @@ public: %If ( KDE_3_2_0 - ) bool append (const KKey&); - bool append (const KShortcut&); + bool append (const TDEShortcut&); %End @@ -245,8 +245,8 @@ public: %End TQString toString () const; - TQString toStringInternal (const KShortcut* = 0) const; - static KShortcut& null (); + TQString toStringInternal (const TDEShortcut* = 0) const; + static TDEShortcut& null (); protected: @@ -257,5 +257,5 @@ public: %End -}; // class KShortcut +}; // class TDEShortcut |