diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-23 15:44:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-24 09:36:59 +0200 |
commit | fba2d764d88582951f00af8184d481a6647a8564 (patch) | |
tree | 8327accd603de32a0aa528b889d75c93c13f6960 /sc/source/ui | |
parent | b2125ae811c2fc2233026e5218a03bc24210a5c1 (diff) |
convert SfxPopupWindowType to enum class
Change-Id: I03813103d648c5745beab740403c7912cdff2756
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/cctrl/tbinsert.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/cctrl/tbinsert.cxx b/sc/source/ui/cctrl/tbinsert.cxx index 4030b74d2e5f..32b06bbb8d90 100644 --- a/sc/source/ui/cctrl/tbinsert.cxx +++ b/sc/source/ui/cctrl/tbinsert.cxx @@ -95,7 +95,7 @@ SfxPopupWindow* ScTbxInsertCtrl::CreatePopupWindow() SfxPopupWindowType ScTbxInsertCtrl::GetPopupWindowType() const { - return nLastSlotId ? SFX_POPUPWINDOW_ONTIMEOUT : SFX_POPUPWINDOW_ONCLICK; + return nLastSlotId ? SfxPopupWindowType::ONTIMEOUT : SfxPopupWindowType::ONCLICK; } void ScTbxInsertCtrl::Select( bool /* bMod1 */ ) |