diff options
Diffstat (limited to 'quanta/components/debugger/debuggermanager.cpp')
-rw-r--r-- | quanta/components/debugger/debuggermanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/components/debugger/debuggermanager.cpp b/quanta/components/debugger/debuggermanager.cpp index 4c5aaa58..b62b3e3b 100644 --- a/quanta/components/debugger/debuggermanager.cpp +++ b/quanta/components/debugger/debuggermanager.cpp @@ -341,8 +341,8 @@ void DebuggerManager::enableAction(const TQString& action, bool enable) { // The action may or may not exist, depending on capabilities of the debugger plugin KActionCollection *ac = quantaApp->actionCollection(); - if(ac && ac->action(action)) - ac->action(action)->setEnabled(enable); + if(ac && ac->action(action.ascii())) + ac->action(action.ascii())->setEnabled(enable); } } |