summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorJesse <jspears@umd.edu>2011-12-14 14:43:58 -0500
committerMichael Meeks <michael.meeks@suse.com>2011-12-15 16:38:50 +0000
commit6a8f6c4b1324e28c598a065683103ac2ef8ea3fc (patch)
treed59cda7401565170e32c7d06af9755f3110651fd /vbahelper
parent63a817d2fb00f248053566c8b8364667432fa8b3 (diff)
Removed extra semicolons
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbapagesetupbase.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vbahelper/source/vbahelper/vbapagesetupbase.cxx b/vbahelper/source/vbahelper/vbapagesetupbase.cxx
index 976fc232cc5b..1cdca49ed9fc 100644
--- a/vbahelper/source/vbahelper/vbapagesetupbase.cxx
+++ b/vbahelper/source/vbahelper/vbapagesetupbase.cxx
@@ -155,7 +155,7 @@ double SAL_CALL VbaPageSetupBase::getRightMargin() throw (css::uno::RuntimeExcep
{
}
- return Millimeter::getInPoints( rightMargin );;
+ return Millimeter::getInPoints( rightMargin );
}
void SAL_CALL VbaPageSetupBase::setRightMargin( double margin ) throw (css::uno::RuntimeException)
@@ -185,7 +185,7 @@ double SAL_CALL VbaPageSetupBase::getLeftMargin() throw (css::uno::RuntimeExcept
{
}
- return Millimeter::getInPoints( leftMargin );;
+ return Millimeter::getInPoints( leftMargin );
}
void SAL_CALL VbaPageSetupBase::setLeftMargin( double margin ) throw (css::uno::RuntimeException)
@@ -214,7 +214,7 @@ double SAL_CALL VbaPageSetupBase::getHeaderMargin() throw (css::uno::RuntimeExce
{
}
- return Millimeter::getInPoints( headerMargin );;
+ return Millimeter::getInPoints( headerMargin );
}
void SAL_CALL VbaPageSetupBase::setHeaderMargin( double margin ) throw (css::uno::RuntimeException)
@@ -243,7 +243,7 @@ double SAL_CALL VbaPageSetupBase::getFooterMargin() throw (css::uno::RuntimeExce
{
}
- return Millimeter::getInPoints( footerMargin );;
+ return Millimeter::getInPoints( footerMargin );
}
void SAL_CALL VbaPageSetupBase::setFooterMargin( double margin ) throw (css::uno::RuntimeException)