summaryrefslogtreecommitdiff
path: root/fpicker/test/svdem.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-11 14:07:54 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-13 06:29:04 +0000
commitc2f912b51efa458ba9bd1601a8676ab119aca1bd (patch)
tree395ec701dda06a5dc1bb980bed505b221a737172 /fpicker/test/svdem.cxx
parente809b97b63c16326ef45c8e41c428c9fb7f49c4d (diff)
convert FilePicker flags to scoped enum
and merged into the other flags variable. Change-Id: I23ed21936b9de1537a06168de04530b9fb6bcff1 Reviewed-on: https://gerrit.libreoffice.org/24889 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'fpicker/test/svdem.cxx')
-rw-r--r--fpicker/test/svdem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/test/svdem.cxx b/fpicker/test/svdem.cxx
index fd2ee7c1d5a2..5bfa801a5546 100644
--- a/fpicker/test/svdem.cxx
+++ b/fpicker/test/svdem.cxx
@@ -167,7 +167,7 @@ IMPL_LINK_TYPED( MyWin, Test, PushButton*, pBtn, void )
printf("Test\n");
if ( pBtn == &aOKBtn )
{
- ScopedVclPtrInstance<SvtFileDialog> pDlg(this,SFXWB_PATHDIALOG);
+ ScopedVclPtrInstance<SvtFileDialog> pDlg(this, PickerFlags::PathDialog);
pDlg->Execute();
printf("ok\n");
}