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 /khotkeys/kcontrol/voice_settings_tab.cpp | |
parent | dc5f267664506a312203c26bfe9001a448b0bb0f (diff) | |
download | tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'khotkeys/kcontrol/voice_settings_tab.cpp')
-rw-r--r-- | khotkeys/kcontrol/voice_settings_tab.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/khotkeys/kcontrol/voice_settings_tab.cpp b/khotkeys/kcontrol/voice_settings_tab.cpp index 612498536..277e2f675 100644 --- a/khotkeys/kcontrol/voice_settings_tab.cpp +++ b/khotkeys/kcontrol/voice_settings_tab.cpp @@ -26,7 +26,7 @@ namespace KHotKeys Voice_settings_tab::Voice_settings_tab( TQWidget* parent_P, const char* name_P ) : Voice_settings_tab_ui( parent_P, name_P ) { - connect( keyButton , TQT_SIGNAL(capturedShortcut (const KShortcut &)) , this, TQT_SLOT(slotCapturedKey( const KShortcut& ))); + connect( keyButton , TQT_SIGNAL(capturedShortcut (const TDEShortcut &)) , this, TQT_SLOT(slotCapturedKey( const TDEShortcut& ))); } void Voice_settings_tab::read_data() @@ -44,9 +44,9 @@ void Voice_settings_tab::clear_data() // "global" tab, not action specific, do nothing } -void Voice_settings_tab::slotCapturedKey( const KShortcut& cut) +void Voice_settings_tab::slotCapturedKey( const TDEShortcut& cut) { - /*for(uint seq=0; seq<KShortcut::MAX_SEQUENCES; seq++) + /*for(uint seq=0; seq<TDEShortcut::MAX_SEQUENCES; seq++) { KKeySequance key=cut.seq(seq); if(key.isNull()) |