[Libreoffice-commits] core.git: Branch 'private/kohei/external-ref-refresh' - sc/inc sc/source

Kohei Yoshida kohei.yoshida at collabora.com
Tue May 20 18:09:32 PDT 2014


 sc/inc/unonames.hxx               |    2 ++
 sc/source/filter/xml/xmlimprt.cxx |    5 +++--
 sc/source/filter/xml/xmlwrap.cxx  |    3 ++-
 3 files changed, 7 insertions(+), 3 deletions(-)

New commits:
commit 1d17a0fe5312f7107beb50b6bb779f4eff8c67c8
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date:   Tue May 20 21:09:41 2014 -0400

    Let's use constant uno name for these.
    
    Change-Id: I5e34f4d7561ef7f4f7b8b3b4d7d06cca072831c7

diff --git a/sc/inc/unonames.hxx b/sc/inc/unonames.hxx
index 1cc71a9..689dcea 100644
--- a/sc/inc/unonames.hxx
+++ b/sc/inc/unonames.hxx
@@ -668,6 +668,8 @@
 
 #define SC_UNO_EMBED_FONTS     "EmbedFonts"
 
+#define SC_UNO_ODS_LOCK_SOLAR_MUTEX "LockSolarMutex"
+
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/xml/xmlimprt.cxx b/sc/source/filter/xml/xmlimprt.cxx
index 2aa6c14..813190d 100644
--- a/sc/source/filter/xml/xmlimprt.cxx
+++ b/sc/source/filter/xml/xmlimprt.cxx
@@ -69,6 +69,7 @@
 #include "editattributemap.hxx"
 #include "documentimport.hxx"
 #include "pivotsource.hxx"
+#include <unonames.hxx>
 
 #include <comphelper/extract.hxx>
 
@@ -2253,8 +2254,8 @@ void ScXMLImport::initialize( const css::uno::Sequence<css::uno::Any>& aArgument
     if (!xInfoSetInfo.is())
         return;
 
-    if (xInfoSetInfo->hasPropertyByName("LockSolarMutex"))
-        xInfoSet->getPropertyValue("LockSolarMutex") >>= mbLockSolarMutex;
+    if (xInfoSetInfo->hasPropertyByName(SC_UNO_ODS_LOCK_SOLAR_MUTEX))
+        xInfoSet->getPropertyValue(SC_UNO_ODS_LOCK_SOLAR_MUTEX) >>= mbLockSolarMutex;
 }
 
 SvXMLImportContext *ScXMLImport::CreateFontDeclsContext(const sal_uInt16 nPrefix, const OUString& rLocalName,
diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx
index 6282b9f..4402b2b 100644
--- a/sc/source/filter/xml/xmlwrap.cxx
+++ b/sc/source/filter/xml/xmlwrap.cxx
@@ -71,6 +71,7 @@
 #include "sheetdata.hxx"
 #include "XMLCodeNameProvider.hxx"
 #include <docsh.hxx>
+#include <unonames.hxx>
 
 using namespace com::sun::star;
 
@@ -348,7 +349,7 @@ bool ScXMLImportWrapper::Import(bool bStylesOnly, ErrCode& nError)
     };
     uno::Reference< beans::XPropertySet > xInfoSet( comphelper::GenericPropertySet_CreateInstance( new comphelper::PropertySetInfo( aImportInfoMap ) ) );
 
-    xInfoSet->setPropertyValue("LockSolarMutex", uno::makeAny(false));
+    xInfoSet->setPropertyValue(SC_UNO_ODS_LOCK_SOLAR_MUTEX, uno::makeAny(false));
 
     // ---- get BuildId from parent container if available
 


More information about the Libreoffice-commits mailing list