diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-04-11 13:09:56 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-04-11 13:09:56 +0000 |
commit | 47f7db9725921e9972eff933f84f2e06588c33cf (patch) | |
tree | 1fd82396733f790068c7a968a29ca99330c19559 /sfx2/source/menu/mnuitem.cxx | |
parent | 911aa15234685b668d355fa596e0201f495db941 (diff) |
INTEGRATION: CWS notes3 (1.21.64); FILE MERGED
2008/03/28 15:11:16 mba 1.21.64.2: warning fixed
2008/03/17 14:27:13 mba 1.21.64.1: #i85834#: allow to change PopupMenu before execution
Diffstat (limited to 'sfx2/source/menu/mnuitem.cxx')
-rw-r--r-- | sfx2/source/menu/mnuitem.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sfx2/source/menu/mnuitem.cxx b/sfx2/source/menu/mnuitem.cxx index 41fda84f0666..361ad4a59f61 100644 --- a/sfx2/source/menu/mnuitem.cxx +++ b/sfx2/source/menu/mnuitem.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: mnuitem.cxx,v $ - * $Revision: 1.22 $ + * $Revision: 1.23 $ * * This file is part of OpenOffice.org. * @@ -278,8 +278,10 @@ void SfxMenuControl::StateChanged // SetItemText flackert in MenuBar insbes. unter OS/2 (Bug #20658) if ( // !bIsObjMenu && nicht wegen "Format/Datenbank" pOwnMenu->GetSVMenu()->GetItemText( GetId() ) != GetTitle() ) - pOwnMenu->SetItemText( GetId(), GetTitle() ); - + { + DBG_WARNING("Title of menu item changed - please check if this needs correction!"); + // pOwnMenu->SetItemText( GetId(), GetTitle() ); + } return; } |