summaryrefslogtreecommitdiffstats
path: root/khotkeys/shared/triggers.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:11:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:11:21 -0600
commitf537c21b68e08f649b1b297bce8f3904603137e0 (patch)
treefb33065387509dea898c90022ddec9c3f8ede86d /khotkeys/shared/triggers.h
parentdc5f267664506a312203c26bfe9001a448b0bb0f (diff)
downloadtdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz
tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'khotkeys/shared/triggers.h')
-rw-r--r--khotkeys/shared/triggers.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/khotkeys/shared/triggers.h b/khotkeys/shared/triggers.h
index cf511f975..c74a3a54a 100644
--- a/khotkeys/shared/triggers.h
+++ b/khotkeys/shared/triggers.h
@@ -66,17 +66,17 @@ class KDE_EXPORT Shortcut_trigger
{
typedef Trigger base;
public:
- Shortcut_trigger( Action_data* data_P, const KShortcut& shortcut_P );
+ Shortcut_trigger( Action_data* data_P, const TDEShortcut& shortcut_P );
Shortcut_trigger( TDEConfig& cfg_P, Action_data* data_P );
virtual ~Shortcut_trigger();
virtual void cfg_write( TDEConfig& cfg_P ) const;
virtual Shortcut_trigger* copy( Action_data* data_P ) const;
virtual const TQString description() const;
- const KShortcut& shortcut() const;
- virtual bool handle_key( const KShortcut& shortcut_P );
+ const TDEShortcut& shortcut() const;
+ virtual bool handle_key( const TDEShortcut& shortcut_P );
virtual void activate( bool activate_P );
private:
- KShortcut _shortcut;
+ TDEShortcut _shortcut;
};
class KDE_EXPORT Window_trigger
@@ -206,7 +206,7 @@ const TQString& Trigger_list::comment() const
// Shortcut_trigger
inline
-const KShortcut& Shortcut_trigger::shortcut() const
+const TDEShortcut& Shortcut_trigger::shortcut() const
{
return _shortcut;
}