diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-25 16:35:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-26 12:02:40 +0100 |
commit | c14b9d036ac8549feb588764b3596c0eb42cf97c (patch) | |
tree | 695b0e480549c55df4da70720b3669825b8b8228 /sc/inc | |
parent | 88ec5de1c950d5b9c32fb98054557436d2aa426d (diff) |
assemble SfxStyleFamilies from more generic resource components
Change-Id: I25aa0d8bca1f16f5fc27d3b299709479a1635ea3
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/sc.hrc | 4 | ||||
-rw-r--r-- | sc/inc/scmod.hxx | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc index f4906545f7fa..26bd9e97885e 100644 --- a/sc/inc/sc.hrc +++ b/sc/inc/sc.hrc @@ -1091,6 +1091,10 @@ #define RID_SCDLG_DPDATEGROUP (SC_DIALOGS_START + 136) #define RID_SCDLG_DPSHOWDETAIL (SC_DIALOGS_START + 137) +#define RID_CELLSTYLEFAMILY (SC_DIALOGS_START + 138) +#define RID_PAGESTYLEFAMILY (SC_DIALOGS_START + 139) +#define RID_STYLEFAMILY_IMAGELIST (SC_DIALOGS_START + 140) + #define RID_POPUP_FILTER (SC_DIALOGS_START + 153) #define RID_SCDLG_COND_FORMAT_MANAGER (SC_DIALOGS_START + 159) diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx index d7affbb57101..1715819a7344 100644 --- a/sc/inc/scmod.hxx +++ b/sc/inc/scmod.hxx @@ -238,6 +238,7 @@ public: virtual SfxItemSet* CreateItemSet( sal_uInt16 nId ) override; virtual void ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet ) override; virtual VclPtr<SfxTabPage> CreateTabPage( sal_uInt16 nId, vcl::Window* pParent, const SfxItemSet& rSet ) override; + virtual SfxStyleFamilies* CreateStyleFamilies() override; void SetInSharedDocLoading( bool bNew ) { mbIsInSharedDocLoading = bNew; } bool IsInSharedDocLoading() const { return mbIsInSharedDocLoading; } |