summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-03-24 09:25:57 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-24 09:25:57 +0200
commitad89ee8fe3d0d028fa0b61a9cbef54a112093177 (patch)
tree4afc14a3ccb4a462a34233230134263009f3e437 /sc
parent7916487cf4d9603cdbe4c7ffbe9bb3f28b51ce4e (diff)
blind fix for screenshot build
after commit 88ec24a23a10af771879421360fe4330cbf174b0 "convert NAME constants to CreateNameFlags o3tl::typed_flags enum" Change-Id: I6025e2d2a1717e4741f0241ea65d4a49bb8da917
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/unit/screenshots/screenshots.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/screenshots/screenshots.cxx b/sc/qa/unit/screenshots/screenshots.cxx
index bd0df735000b..eb208b4ed5b5 100644
--- a/sc/qa/unit/screenshots/screenshots.cxx
+++ b/sc/qa/unit/screenshots/screenshots.cxx
@@ -196,7 +196,7 @@ VclPtr<VclAbstractDialog> ScScreenshotTest::createDialogByID(sal_uInt32 nID)
case 7: // "modules/scalc/ui/createnamesdialog.ui"
{
//// just fake some flags
- sal_uInt16 nFlags = NAME_LEFT | NAME_TOP;
+ CreateNameFlags nFlags = CreateNameFlags::Left | CreateNameFlags::Top;
pReturnDialog = mpFact->CreateScNameCreateDlg(mpViewShell->GetDialogParent(), nFlags);
break;
}