diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-02 11:36:41 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-02 11:43:55 -0400 |
commit | f1658c64e0e088d6fddd4fc3416a80e0a952f516 (patch) | |
tree | 12bffaa89804547e61fe6a8e58a5fc3e23e5d3e4 | |
parent | 8a6a068326dbebe3e29a3f22794ef84a09266453 (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.cxx | 2 |
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; } |