summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorPhilipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM>2010-10-12 18:17:55 +0200
committerPhilipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM>2010-10-12 18:17:55 +0200
commitf1adee81a62c6f29216b614ed7701c6bd3c1ad87 (patch)
treee3d6a3f983a0c644b80c95e4c2bba8fc657c90c6 /vcl
parente380dd2f96f67875ee54481a3a08a4253563f78b (diff)
vcl116: fix a warning
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/salvtables.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 35f5599d5e55..2a04389d8f44 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -82,6 +82,7 @@ SalMenu* SalInstance::CreateMenu( BOOL, Menu* )
void SalInstance::DestroyMenu( SalMenu* pMenu )
{
+ (void)pMenu;
OSL_ENSURE( pMenu == 0, "DestroyMenu called with non-native menus" );
}
@@ -92,6 +93,7 @@ SalMenuItem* SalInstance::CreateMenuItem( const SalItemParams* )
void SalInstance::DestroyMenuItem( SalMenuItem* pItem )
{
+ (void)pItem;
OSL_ENSURE( pItem == 0, "DestroyMenu called with non-native menus" );
}