[Libreoffice-commits] .: sc/source

Kohei Yoshida kohei at kemper.freedesktop.org
Mon Jul 2 08:38:52 PDT 2012


 sc/source/ui/unoobj/fielduno.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dcf586ff817af73270899f233b26525306120a0c
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Mon Jul 2 11:36:41 2012 -0400

    fdo#50587: Remove totally mis-placed 'static' keyword.
    
    How in the world did that end up there!?
    
    Change-Id: If276afcea2b0c2d0fe2a59ac966f245608d0e64d

diff --git a/sc/source/ui/unoobj/fielduno.cxx b/sc/source/ui/unoobj/fielduno.cxx
index 99d5ddd..31ee02b 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;
 }
 


More information about the Libreoffice-commits mailing list