diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/styledlg.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/styleui/styledlg.cxx | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/ui/inc/styledlg.hxx b/sc/source/ui/inc/styledlg.hxx index 04a70a1f7633..b91572c35772 100644 --- a/sc/source/ui/inc/styledlg.hxx +++ b/sc/source/ui/inc/styledlg.hxx @@ -33,7 +33,7 @@ public: protected: virtual void PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage ) SAL_OVERRIDE; - virtual const SfxItemSet* GetRefreshedSet() SAL_OVERRIDE; + virtual void RefreshInputSet() SAL_OVERRIDE; private: sal_uInt16 nDlgRsc; diff --git a/sc/source/ui/styleui/styledlg.cxx b/sc/source/ui/styleui/styledlg.cxx index 1c1dc170b61d..fc72ca45d783 100644 --- a/sc/source/ui/styleui/styledlg.cxx +++ b/sc/source/ui/styleui/styledlg.cxx @@ -173,12 +173,11 @@ void ScStyleDlg::PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage ) } } -const SfxItemSet* ScStyleDlg::GetRefreshedSet() +void ScStyleDlg::RefreshInputSet() { SfxItemSet* pItemSet = GetInputSetImpl(); pItemSet->ClearItem(); pItemSet->SetParent( GetStyleSheet().GetItemSet().GetParent() ); - return pItemSet; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |