diff options
Diffstat (limited to 'cervisia/logmessageedit.cpp')
-rw-r--r-- | cervisia/logmessageedit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cervisia/logmessageedit.cpp b/cervisia/logmessageedit.cpp index fb41e57b..302eacd0 100644 --- a/cervisia/logmessageedit.cpp +++ b/cervisia/logmessageedit.cpp @@ -88,9 +88,9 @@ void LogMessageEdit::keyPressEvent(TQKeyEvent* event) KeyBindingMap keys = getKeyBindings(); // handle text completion key - KShortcut shortcut = keys[TextCompletion]; + TDEShortcut shortcut = keys[TextCompletion]; if( shortcut.isNull() ) - shortcut = KStdAccel::shortcut(KStdAccel::TextCompletion); + shortcut = TDEStdAccel::shortcut(TDEStdAccel::TextCompletion); KKey key(event); @@ -112,7 +112,7 @@ void LogMessageEdit::keyPressEvent(TQKeyEvent* event) // handle previous match key shortcut = keys[PrevCompletionMatch]; if( shortcut.isNull() ) - shortcut = KStdAccel::shortcut(KStdAccel::PrevCompletion); + shortcut = TDEStdAccel::shortcut(TDEStdAccel::PrevCompletion); if( shortcut.contains(key) ) { @@ -123,7 +123,7 @@ void LogMessageEdit::keyPressEvent(TQKeyEvent* event) // handle next match key shortcut = keys[NextCompletionMatch]; if( shortcut.isNull() ) - shortcut = KStdAccel::shortcut(KStdAccel::NextCompletion); + shortcut = TDEStdAccel::shortcut(TDEStdAccel::NextCompletion); if( shortcut.contains(key) ) { |