summaryrefslogtreecommitdiff
path: root/sfx2/source/menu/mnumgr.cxx
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2002-10-11 14:20:43 +0000
committerCarsten Driesner <cd@openoffice.org>2002-10-11 14:20:43 +0000
commitbf557c04174410d804e66a7f2eedf93fb22184a0 (patch)
treee8075ca203dad68363b4e189e1e409b8a65bf5c6 /sfx2/source/menu/mnumgr.cxx
parent1cbe30fd5892329921e455c808b121ee8f22c890 (diff)
#102630# Filter out SID_ADDONS id
Diffstat (limited to 'sfx2/source/menu/mnumgr.cxx')
-rw-r--r--sfx2/source/menu/mnumgr.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/sfx2/source/menu/mnumgr.cxx b/sfx2/source/menu/mnumgr.cxx
index d06411af50..ad5221d477 100644
--- a/sfx2/source/menu/mnumgr.cxx
+++ b/sfx2/source/menu/mnumgr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: mnumgr.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: mba $ $Date: 2002-09-06 12:48:07 $
+ * last change: $Author: cd $ $Date: 2002-10-11 15:20:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -249,6 +249,9 @@ SfxMenuIter_Impl* SfxMenuIter_Impl::NextItem()
if ( _nId >= START_ITEMID_WINDOWLIST && _nId <= END_ITEMID_WINDOWLIST )
return NextItem();
+ if ( _nId == SID_ADDONS )
+ return NextItem();
+
// nicht alle Popups werden durchlaufen
if ( _nId == SID_OBJECT ||
( _nId >= SID_OBJECTMENU0 && _nId <= SID_OBJECTMENU_LAST ) )
@@ -1149,7 +1152,7 @@ BOOL SfxMenuManager::IsPopupFunction( USHORT nId )
return nId == SID_PICKLIST ||
nId == SID_MDIWINDOWLIST ||
nId == SID_HELPMENU ||
- nId == SID_HELPMENU;
+ nId == SID_ADDONLIST;
}
//====================================================================