summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-01-25 12:35:36 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-01-25 16:59:18 +0100
commit6d5e2ca07fb0c8686c9e09645933ca0f2f58ab71 (patch)
tree3cf7ef0cfd7386eaad80443d593b1a2a1d46ed51 /include/filter
parent85dfda49880dcc6676dcda5838da1c7b36215079 (diff)
drop GetPageSize no-op function
which used to have some commented out stuff which considered changing the size, but was all removed ages ago Change-Id: Iff62a71e9b7d31acb16016b5e72d168327111ce7 Reviewed-on: https://gerrit.libreoffice.org/48583 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/svdfppt.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx
index 689236766fb9..a4b058b581fa 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -195,9 +195,8 @@ struct MSFILTER_DLLPUBLIC PptDocumentAtom
public:
- static const Size& GetPageSize( const Size& rSiz );
- Size GetSlidesPageSize() const { return GetPageSize( aSlidesPageSize ); }
- Size GetNotesPageSize() const { return GetPageSize( aNotesPageSize ); }
+ Size GetSlidesPageSize() const { return aSlidesPageSize; }
+ Size GetNotesPageSize() const { return aNotesPageSize; }
friend SvStream& ReadPptDocumentAtom( SvStream& rIn, PptDocumentAtom& rAtom );
};