summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-01-08 00:25:21 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-01-08 00:25:21 -0600
commit5b75a5167027c653069a48a7aee54b27acbc011d (patch)
tree592f39dfcb34a683a76f56ce8f447d92902ec520 /vcl
parent002531190d88c7e8f7dc9287af32d54c56b5495a (diff)
fix api change in Menu
Change-Id: I386439be9bf7ce5c9d1b9a4df93195bd6738f573
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/toolbox2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/toolbox2.cxx b/vcl/source/window/toolbox2.cxx
index 2192d39fee27..b9a9853f3a33 100644
--- a/vcl/source/window/toolbox2.cxx
+++ b/vcl/source/window/toolbox2.cxx
@@ -1974,7 +1974,7 @@ void ToolBox::UpdateCustomMenu()
if( it->IsClipped() )
{
sal_uInt16 id = it->mnId + TOOLBOX_MENUITEM_START;
- pMenu->InsertItem( id, it->maText, it->maImage, 0, 0 );
+ pMenu->InsertItem( id, it->maText, it->maImage, 0, OString(), 0 );
pMenu->EnableItem( id, it->mbEnabled );
pMenu->CheckItem( id, it->meState == STATE_CHECK );
}