summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/svx/flagsdef.hxx1
-rw-r--r--sw/source/ui/chrdlg/chardlg.cxx4
-rw-r--r--sw/source/ui/fmtui/tmpdlg.cxx2
3 files changed, 3 insertions, 4 deletions
diff --git a/include/svx/flagsdef.hxx b/include/svx/flagsdef.hxx
index 750e5c9326fc..93b1397442d3 100644
--- a/include/svx/flagsdef.hxx
+++ b/include/svx/flagsdef.hxx
@@ -66,7 +66,6 @@ namespace o3tl
// flags for SvxCharNamePage
#define SVX_RELATIVE_MODE 0x02
// flags for SvxCharEffectsPage
-#define SVX_ENABLE_FLASH 0x04
#define SVX_ENABLE_CHAR_TRANSPARENCY 0x08
diff --git a/sw/source/ui/chrdlg/chardlg.cxx b/sw/source/ui/chrdlg/chardlg.cxx
index 5e89cfdaa3e4..692c835ec89f 100644
--- a/sw/source/ui/chrdlg/chardlg.cxx
+++ b/sw/source/ui/chrdlg/chardlg.cxx
@@ -111,8 +111,8 @@ void SwCharDlg::PageCreated(const OString& rId, SfxTabPage &rPage)
}
else if (rId == "fonteffects")
{
- aSet.Put(SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER | SVX_ENABLE_FLASH
- | SVX_ENABLE_CHAR_TRANSPARENCY));
+ aSet.Put(
+ SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER | SVX_ENABLE_CHAR_TRANSPARENCY));
rPage.PageCreated(aSet);
}
else if (rId == "position")
diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx
index c040ad925afc..b66956d824c3 100644
--- a/sw/source/ui/fmtui/tmpdlg.cxx
+++ b/sw/source/ui/fmtui/tmpdlg.cxx
@@ -282,7 +282,7 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage
}
else if (rId == "fonteffect")
{
- sal_uInt32 nFlags = SVX_ENABLE_FLASH | SVX_ENABLE_CHAR_TRANSPARENCY;
+ sal_uInt32 nFlags = SVX_ENABLE_CHAR_TRANSPARENCY;
if( SfxStyleFamily::Char == nType )
nFlags = nFlags|SVX_PREVIEW_CHARACTER;
aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, nFlags));