diff options
Diffstat (limited to 'sfx2/source/dialog/documentfontsdialog.cxx')
-rw-r--r-- | sfx2/source/dialog/documentfontsdialog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/dialog/documentfontsdialog.cxx b/sfx2/source/dialog/documentfontsdialog.cxx index 20b4a8fb3cd5..69b4fd4d9ec6 100644 --- a/sfx2/source/dialog/documentfontsdialog.cxx +++ b/sfx2/source/dialog/documentfontsdialog.cxx @@ -23,13 +23,13 @@ using namespace ::com::sun::star; -SfxTabPage* SfxDocumentFontsPage::Create( Window* parent, const SfxItemSet& set ) +SfxTabPage* SfxDocumentFontsPage::Create( Window* parent, const SfxItemSet* set ) { - return new SfxDocumentFontsPage( parent, set ); + return new SfxDocumentFontsPage( parent, *set ); } SfxDocumentFontsPage::SfxDocumentFontsPage( Window* parent, const SfxItemSet& set ) - : SfxTabPage( parent, "DocumentFontsPage", "sfx/ui/documentfontspage.ui", set ) + : SfxTabPage( parent, "DocumentFontsPage", "sfx/ui/documentfontspage.ui", &set ) { get( embedFontsCheckbox, "embedFonts" ); } |