summaryrefslogtreecommitdiff
path: root/include/svx/nbdtmg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-20 09:49:51 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:36 +0200
commit9dc41e228dd60c60a4364d26270c9769d2939ded (patch)
tree960bad38180b7cc8d185e392fc67df8975eecf00 /include/svx/nbdtmg.hxx
parentfd8f8bdaadc6bac6cf57c335422482a6793211a2 (diff)
convert remnants of String in SVX to String
Change-Id: I66fd6387c3fcd33c6ae0b431810abf6679345767
Diffstat (limited to 'include/svx/nbdtmg.hxx')
-rw-r--r--include/svx/nbdtmg.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx
index 3ee4a84af154..4ce8af4445de 100644
--- a/include/svx/nbdtmg.hxx
+++ b/include/svx/nbdtmg.hxx
@@ -196,14 +196,14 @@ class SVX_DLLPUBLIC NBOTypeMgrBase
: eType(aType)
, pSet(0)
, eCoreUnit(SFX_MAPUNIT_TWIP)
- , aNumCharFmtName(String())
+ , aNumCharFmtName(OUString())
, bIsLoading(false)
{}
NBOTypeMgrBase(const NBOType aType,const SfxItemSet* pArg)
: eType(aType)
, pSet(pArg)
, eCoreUnit(SFX_MAPUNIT_TWIP)
- , aNumCharFmtName(String())
+ , aNumCharFmtName(OUString())
, bIsLoading(false)
{}
NBOTypeMgrBase(const NBOTypeMgrBase& aTypeMgr)
@@ -230,8 +230,8 @@ class SVX_DLLPUBLIC NBOTypeMgrBase
SfxMapUnit GetMapUnit();
protected:
bool bIsLoading;
- void ImplLoad(String filename);
- void ImplStore(String filename);
+ void ImplLoad(OUString filename);
+ void ImplStore(OUString filename);
};