summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-07-02 11:36:41 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-07-02 11:39:05 -0400
commitdcf586ff817af73270899f233b26525306120a0c (patch)
tree8a4c29203717427ec2d18f7a1e2d468e2f82b75f
parent73243adcbe99f3ebd6eb77404168f4c3f91d74cd (diff)
fdo#50587: Remove totally mis-placed 'static' keyword.
How in the world did that end up there!? Change-Id: If276afcea2b0c2d0fe2a59ac966f245608d0e64d
-rw-r--r--sc/source/ui/unoobj/fielduno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/fielduno.cxx b/sc/source/ui/unoobj/fielduno.cxx
index 99d5ddd640f8..31ee02be7dc0 100644
--- a/sc/source/ui/unoobj/fielduno.cxx
+++ b/sc/source/ui/unoobj/fielduno.cxx
@@ -1316,7 +1316,7 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScEditFieldObj::getPropertySetI
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
- static uno::Reference<beans::XPropertySetInfo> aRef = pPropSet->getPropertySetInfo();
+ uno::Reference<beans::XPropertySetInfo> aRef = pPropSet->getPropertySetInfo();
return aRef;
}