diff options
Diffstat (limited to 'languages/cpp/cppcodecompletion.cpp')
-rw-r--r-- | languages/cpp/cppcodecompletion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/cppcodecompletion.cpp b/languages/cpp/cppcodecompletion.cpp index aaad17c1..c6ee9db7 100644 --- a/languages/cpp/cppcodecompletion.cpp +++ b/languages/cpp/cppcodecompletion.cpp @@ -954,11 +954,11 @@ m_codeCompleteCh2Rx( "(->)|(\\:\\:)" ) { connect( part, TQT_SIGNAL( codeModelUpdated( const TQString& ) ), this, TQT_SLOT( slotCodeModelUpdated( const TQString& ) ) ); - KAction * action = new KAction( i18n("Jump to declaration under cursor"), 0, CTRL + Key_Comma, + TDEAction * action = new TDEAction( i18n("Jump to declaration under cursor"), 0, CTRL + Key_Comma, this, TQT_SLOT(slotJumpToDeclCursorContext()), part->actionCollection(), "jump_to_declaration_cursor_context" ); action->plug( &m_DummyActionWidget ); - action = new KAction( i18n("Jump to definition under cursor"), 0, CTRL + Key_Period, + action = new TDEAction( i18n("Jump to definition under cursor"), 0, CTRL + Key_Period, this, TQT_SLOT(slotJumpToDefCursorContext()), part->actionCollection(), "jump_to_defintion_cursor_context" ); action->plug( &m_DummyActionWidget ); } |