diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:36 -0600 |
commit | 7716a5e605907a009e19f429cec4e6b5f346bd71 (patch) | |
tree | 16cf4a5d7a24db774f988022d514adefc75015c0 /cervisia/logmessageedit.cpp | |
parent | 0117fbed932653a04aeef16b2ed7edee858959ac (diff) | |
download | tdesdk-7716a5e605907a009e19f429cec4e6b5f346bd71.tar.gz tdesdk-7716a5e605907a009e19f429cec4e6b5f346bd71.zip |
Rename a number of classes to enhance compatibility with KDE4
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) ) { |