SVN commit 884745 by vprus: Make the breakpoint widget not have a toolbar. M +8 -1 debuggerplugin.cpp --- trunk/KDE/kdevelop/languages/cpp/debugger/debuggerplugin.cpp #884744:884745 @@ -119,7 +119,14 @@ if (view->widget()->metaObject()->indexOfSignal(SIGNAL(requestRaise())) != -1) QObject::connect(view->widget(), SIGNAL(requestRaise()), view, SLOT(requestRaise())); } - + + /* At present, some debugger widgets (e.g. breakpoint) contain actions so that shortcuts + work, but they don't need any toolbar. So, suppress toolbar action. */ + virtual QList toolBarActions( QWidget* viewWidget ) const + { + return QList(); + } + private: CppDebuggerPlugin* m_plugin; GDBController* m_controller;