diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:11:21 -0600 |
commit | f537c21b68e08f649b1b297bce8f3904603137e0 (patch) | |
tree | fb33065387509dea898c90022ddec9c3f8ede86d /twin/utils.h | |
parent | dc5f267664506a312203c26bfe9001a448b0bb0f (diff) | |
download | tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'twin/utils.h')
-rw-r--r-- | twin/utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/twin/utils.h b/twin/utils.h index 538a7c6b5..94edb8b4d 100644 --- a/twin/utils.h +++ b/twin/utils.h @@ -153,7 +153,7 @@ class Motif }; class KWinSelectionOwner - : public KSelectionOwner + : public TDESelectionOwner { Q_OBJECT public: @@ -254,17 +254,17 @@ void checkNonExistentClients(); #ifndef KCMRULES // Qt dialogs emit no signal when closed :( class ShortcutDialog - : public KShortcutDialog + : public TDEShortcutDialog { Q_OBJECT public: - ShortcutDialog( const KShortcut& cut ); + ShortcutDialog( const TDEShortcut& cut ); virtual void accept(); virtual void hide(); signals: void dialogDone( bool ok ); protected: - virtual void done( int r ) { KShortcutDialog::done( r ); emit dialogDone( r == Accepted ); } + virtual void done( int r ) { TDEShortcutDialog::done( r ); emit dialogDone( r == Accepted ); } }; #endif |