diff options
author | Noel Power <noel.power@suse.com> | 2013-04-15 15:12:39 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-04-15 15:13:14 +0100 |
commit | 2aad00328fe9b4498b795f21e79f76a0c45e2eca (patch) | |
tree | b540ab618483f29abbc7504477e63a885c6bf82f /sc/source/ui/vba/vbapagesetup.cxx | |
parent | 92da8fc4ebad92a3667e3534db173ab7232c8048 (diff) |
bnc#813528 stub out some missing XPageSetup api
Change-Id: I105ca73f9f99013c4472ae2d7491fbc67e435015
Diffstat (limited to 'sc/source/ui/vba/vbapagesetup.cxx')
-rw-r--r-- | sc/source/ui/vba/vbapagesetup.cxx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sc/source/ui/vba/vbapagesetup.cxx b/sc/source/ui/vba/vbapagesetup.cxx index 91a23d0fbc2c..9f20b262f222 100644 --- a/sc/source/ui/vba/vbapagesetup.cxx +++ b/sc/source/ui/vba/vbapagesetup.cxx @@ -600,6 +600,31 @@ void SAL_CALL ScVbaPageSetup::setPrintHeadings( sal_Bool printHeadings) throw (c } } +::sal_Bool SAL_CALL ScVbaPageSetup::getPrintGridlines() throw (uno::RuntimeException) +{ + return false; +} + +void SAL_CALL ScVbaPageSetup::setPrintGridlines( ::sal_Bool /*_printgridlines*/ ) throw (uno::RuntimeException) +{ +} + +OUString SAL_CALL ScVbaPageSetup::getPrintTitleRows() throw (uno::RuntimeException) +{ + return OUString(); +} +void SAL_CALL ScVbaPageSetup::setPrintTitleRows( const OUString& /*_printtitlerows*/ ) throw (css::uno::RuntimeException) +{ +} +OUString SAL_CALL ScVbaPageSetup::getPrintTitleColumns() throw (uno::RuntimeException) +{ + return OUString(); +} + +void SAL_CALL ScVbaPageSetup::setPrintTitleColumns( const OUString& /*_printtitlecolumns*/ ) throw (uno::RuntimeException) +{ +} + OUString ScVbaPageSetup::getServiceImplName() { |