------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=122175
------- Additional Comments From js iidea pl 2006-02-18 15:57 -------
SVN commit 510945 by staniek:
Main Window
- disabled complex and redundant action 'View -> Tool Docks' menu.
This comes from KMDI, not Kexi itself and will be completely removed
in KDE4 version. IIRC, we could not hide it now as this may cause crashes.
CCMAIL:122175 bugs kde org
CCMAIL:annma kde org
M +4 -0 keximainwindowimpl.cpp
--- trunk/koffice/kexi/main/keximainwindowimpl.cpp #510944:510945
@ -232,6 +232,10 @
//disabled (possible crash) d->hideMenuItem("file", i18n("&Import"), true);
//disabled (possible crash) d->hideMenuItem("help", i18n( "&Report Bug..."
), true);
#endif
+ KAction *kmdi_tooldock_menu_action = childClients()->getFirst() ?
childClients()->getFirst()->actionCollection()->action("kmdi_tooldock_menu") :
0;
+ if (kmdi_tooldock_menu_action) {
+ kmdi_tooldock_menu_action->setEnabled(false);
+ }
if (!isFakingSDIApplication() && !d->final) {
// QPopupMenu *menu = (QPopupMenu*) child( "window", "KPopupMenu"
);