diff options
Diffstat (limited to 'cui/source/inc/bbdlg.hxx')
-rw-r--r-- | cui/source/inc/bbdlg.hxx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/cui/source/inc/bbdlg.hxx b/cui/source/inc/bbdlg.hxx index fe2ac3416c00..51cb1baf65fe 100644 --- a/cui/source/inc/bbdlg.hxx +++ b/cui/source/inc/bbdlg.hxx @@ -34,17 +34,20 @@ class SvxBorderBackgroundDlg: public SfxTabDialog { public: - SvxBorderBackgroundDlg( Window *pParent, - const SfxItemSet& rCoreSet, - sal_Bool bEnableSelector = sal_False ); + SvxBorderBackgroundDlg(Window *pParent, + const SfxItemSet& rCoreSet, + bool bEnableSelector = false, + bool bEnableDrawingLayerFillStyles = false); ~SvxBorderBackgroundDlg(); protected: - virtual void PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage ); + virtual void PageCreated(sal_uInt16 nPageId,SfxTabPage& rTabPage); private: - sal_Bool bEnableBackgroundSelector; // fuer Border/Background-Dlg + /// bitfield + bool mbEnableBackgroundSelector : 1; // fuer Border/Background-Dlg + bool mbEnableDrawingLayerFillStyles : 1; // for full DrawingLayer FillStyles }; |