From 1333cd2250ff8b1d648062a5767203ea1a051dd2 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Fri, 12 Feb 2010 16:56:44 +0100
Subject: changefileheader2: #i10000#: convert files with CR/LF characters to
CR only
---
sc/source/core/tool/formulaparserpool.cxx | 2 +-
sc/source/ui/unoobj/shapeuno.cxx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
(limited to 'sc')
diff --git a/sc/source/core/tool/formulaparserpool.cxx b/sc/source/core/tool/formulaparserpool.cxx
index 921fabcb755f..75d1c874eba8 100644
--- a/sc/source/core/tool/formulaparserpool.cxx
+++ b/sc/source/core/tool/formulaparserpool.cxx
@@ -158,7 +158,7 @@ Reference< XFormulaParser > ScFormulaParserPool::getFormulaParser( const OUStrin
ScParserFactoryMap& rFactoryMap = ScParserFactorySingleton::get();
rxParser = rFactoryMap.createFormulaParser( xComponent, rNamespace );
}
- catch( Exception& )
+ catch( Exception& )
{
}
return rxParser;
diff --git a/sc/source/ui/unoobj/shapeuno.cxx b/sc/source/ui/unoobj/shapeuno.cxx
index 4bf1c4892252..54e18c957fff 100644
--- a/sc/source/ui/unoobj/shapeuno.cxx
+++ b/sc/source/ui/unoobj/shapeuno.cxx
@@ -159,12 +159,12 @@ uno::Any SAL_CALL ScShapeObj::queryInterface( const uno::Type& rType )
void SAL_CALL ScShapeObj::acquire() throw()
{
- OWeakObject::acquire();
+ OWeakObject::acquire();
}
void SAL_CALL ScShapeObj::release() throw()
{
- OWeakObject::release();
+ OWeakObject::release();
}
void ScShapeObj::GetShapePropertySet()
--
cgit