summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-05-22 12:49:04 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-02-05 21:35:17 -0500
commit23ed3993e0f44584893e78226da20cd63242dbdb (patch)
treeb6a101b7b0b66fb953eb9a9d95c44b6929ac8441 /sc
parent4ed58fd8721b441e3c131408188dec7ba5029a5e (diff)
convert SHOW constants to scoped enum
(cherry picked from commit b419da0f53cf7f65b1d0c58351176ece23fbfe1f) Change-Id: I2712a0901049885502cade31f9757f712048bb33
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/inc/reffact.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/inc/reffact.hxx b/sc/source/ui/inc/reffact.hxx
index 4dee934aa8fc..83a29f6e58ea 100644
--- a/sc/source/ui/inc/reffact.hxx
+++ b/sc/source/ui/inc/reffact.hxx
@@ -182,7 +182,7 @@ public:
bool LockVisible( bool bLock ){ bool bVis = m_bVisibleLock; m_bVisibleLock = bLock; return bVis; }
bool LockFreeWindow( bool bLock ){ bool bFreeWindow = m_bFreeWindowLock; m_bFreeWindowLock = bLock; return bFreeWindow; }
void Hide() SAL_OVERRIDE { if( !m_bVisibleLock) SfxChildWindow::Hide(); }
- void Show( sal_uInt16 nFlags ) SAL_OVERRIDE { if( !m_bVisibleLock ) SfxChildWindow::Show( nFlags ); }
+ void Show( ShowFlags nFlags ) SAL_OVERRIDE { if( !m_bVisibleLock ) SfxChildWindow::Show( nFlags ); }
};
#endif // INCLUDED_SC_SOURCE_UI_INC_REFFACT_HXX