summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog/securitypage.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-10 15:52:37 +0200
committerNoel Grandin <noel@peralex.com>2015-04-13 09:34:54 +0200
commitb5f5a386504e320b022f8609c9c36652ae2d3d18 (patch)
tree73ab95edb05a7f3cd0bf305c5846fdf7c0ad66c0 /sfx2/source/dialog/securitypage.cxx
parentf2109254942074d07ad52bf9fe6571405fd79618 (diff)
convert SHOWEXTRAS constants to scoped enum
Change-Id: I84bff53e55fc93ad423835ebc3bf129546dfb7c3
Diffstat (limited to 'sfx2/source/dialog/securitypage.cxx')
-rw-r--r--sfx2/source/dialog/securitypage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/securitypage.cxx b/sfx2/source/dialog/securitypage.cxx
index b3fcb3dd50ca..7fb1d0c4cfb6 100644
--- a/sfx2/source/dialog/securitypage.cxx
+++ b/sfx2/source/dialog/securitypage.cxx
@@ -102,7 +102,7 @@ static bool lcl_GetPassword(
SfxPasswordDialog aPasswdDlg( pParent );
aPasswdDlg.SetMinLen( 1 );
if (bProtect)
- aPasswdDlg.ShowExtras( SHOWEXTRAS_CONFIRM );
+ aPasswdDlg.ShowExtras( SfxShowExtras::CONFIRM );
if (RET_OK == aPasswdDlg.Execute() && !aPasswdDlg.GetPassword().isEmpty())
{
rPassword = aPasswdDlg.GetPassword();