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 /sfx2 | |
parent | b2125ae811c2fc2233026e5218a03bc24210a5c1 (diff) |
convert SfxPopupWindowType to enum class
Change-Id: I03813103d648c5745beab740403c7912cdff2756
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/toolbox/tbxitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/toolbox/tbxitem.cxx b/sfx2/source/toolbox/tbxitem.cxx index 4c49cb942aa4..027d4406adf8 100644 --- a/sfx2/source/toolbox/tbxitem.cxx +++ b/sfx2/source/toolbox/tbxitem.cxx @@ -976,7 +976,7 @@ void SfxToolBoxControl::Click() SfxPopupWindowType SfxToolBoxControl::GetPopupWindowType() const { - return SFX_POPUPWINDOW_NONE; + return SfxPopupWindowType::NONE; } |