diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-21 13:51:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-21 13:52:12 +0200 |
commit | 7669bf3884ac053baca04e09d7c9994870983a4a (patch) | |
tree | d81b2dece0051ebcacf3c52cf8c4648cbb3414df /vcl | |
parent | 6b9053d371fc8b8543faf7add5fb6d61aab26605 (diff) |
bMirrorMode and nItemImageAngle are unused
Change-Id: I87da73db3a58b2e94b3bdda2cea5874701303a18
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/menuitemlist.cxx | 4 | ||||
-rw-r--r-- | vcl/source/window/menuitemlist.hxx | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/vcl/source/window/menuitemlist.cxx b/vcl/source/window/menuitemlist.cxx index 07a264502ccd..a1c1fa2d410d 100644 --- a/vcl/source/window/menuitemlist.cxx +++ b/vcl/source/window/menuitemlist.cxx @@ -73,8 +73,6 @@ MenuItemData* MenuItemList::Insert( pData->bEnabled = true; pData->bVisible = true; pData->bIsTemporary = false; - pData->bMirrorMode = false; - pData->nItemImageAngle = 0; SalItemParams aSalMIData; aSalMIData.nId = nId; @@ -109,8 +107,6 @@ void MenuItemList::InsertSeparator(const OString &rIdent, size_t nPos) pData->bEnabled = true; pData->bVisible = true; pData->bIsTemporary = false; - pData->bMirrorMode = false; - pData->nItemImageAngle = 0; SalItemParams aSalMIData; aSalMIData.nId = 0; diff --git a/vcl/source/window/menuitemlist.hxx b/vcl/source/window/menuitemlist.hxx index f4b9deb45073..ce5ba365592c 100644 --- a/vcl/source/window/menuitemlist.hxx +++ b/vcl/source/window/menuitemlist.hxx @@ -50,8 +50,6 @@ struct MenuItemData bool bEnabled; // Enabled bool bVisible; // Visible (note: this flag will not override MenuFlags::HideDisabledEntries when true) bool bIsTemporary; // Temporary inserted ('No selection possible') - bool bMirrorMode; - long nItemImageAngle; Size aSz; // only temporarily valid OUString aAccessibleName; // accessible name @@ -69,8 +67,6 @@ struct MenuItemData , bEnabled(false) , bVisible(false) , bIsTemporary(false) - , bMirrorMode(false) - , nItemImageAngle(0) , pSalMenuItem(nullptr) { } @@ -88,8 +84,6 @@ struct MenuItemData , bEnabled(false) , bVisible(false) , bIsTemporary(false) - , bMirrorMode(false) - , nItemImageAngle(0) , pSalMenuItem(nullptr) { } |