diff options
author | Sören Möller <soerenmoeller2001@gmail.com> | 2012-07-04 22:53:11 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-07-05 16:18:51 +0200 |
commit | b6cfbd08c2a9b686cfe024a63469cbcd10d9a4bd (patch) | |
tree | b3a8e6515424445bc5a0c1d0e7fb86e313da57f7 /sc/inc/global.hxx | |
parent | 8e9e166d35191eaacfe2001fa0d50fb8c29394f4 (diff) |
Replaced deprecated tools/String with OUString in ScMatrix
Change-Id: If431e5ef8b5c97384a1bb1c7fa36c6894ece8343
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 1f29753acf6b..371431fc0265 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -35,6 +35,7 @@ #include <osl/endian.h> #include <com/sun/star/uno/Reference.hxx> #include "scdllapi.h" +#include <rtl/ustring.hxx> #include <boost/unordered_map.hpp> #include <vector> @@ -231,6 +232,7 @@ const sal_uInt16 IDF_AUTOFILL = IDF_ALL & ~(IDF_NOTE | IDF_OBJECTS); #define EMPTY_STRING ScGlobal::GetEmptyString() +#define EMPTY_OUSTRING ScGlobal::GetEmptyOUString() // layer id's for drawing #define SC_LAYER_FRONT 0 @@ -496,6 +498,7 @@ class ScGlobal static String** ppRscString; static String* pStrScDoc; static String* pEmptyString; + static ::rtl::OUString* pEmptyOUString; static String* pStrClipDocName; static SvxBrushItem* pEmptyBrushItem; static SvxBrushItem* pButtonBrushItem; @@ -585,6 +588,7 @@ public: static SvxBrushItem* GetEmbeddedBrushItem() { return pEmbeddedBrushItem; } static SvxBrushItem* GetProtectedBrushItem() { return pProtectedBrushItem; } SC_DLLPUBLIC static const String& GetEmptyString(); + SC_DLLPUBLIC static const ::rtl::OUString& GetEmptyOUString(); static const String& GetScDocString(); /** Returns the specified image list with outline symbols. */ |