diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-08-07 14:07:33 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-08-08 23:25:27 +0200 |
commit | 40b4567be2ea4aca90677167e0251cfd05385055 (patch) | |
tree | ead3bece658d38ab0aadf39b102db09a90898c16 /sw/inc | |
parent | df7ffcdb022b0b30006aa8238ba4070eb4c64bd5 (diff) |
sw: convert SwCondCollItem to OUString
Change-Id: Id3efca3f1cb555ec995973b8a5bdd2a78318e18f
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/ccoll.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/ccoll.hxx b/sw/inc/ccoll.hxx index 23d768cf6ee9..6935b842db2c 100644 --- a/sw/inc/ccoll.hxx +++ b/sw/inc/ccoll.hxx @@ -62,7 +62,7 @@ class SW_DLLPUBLIC SwCondCollItem : public SfxPoolItem { static const CommandStruct aCmds[COND_COMMAND_COUNT]; - String sStyles[COND_COMMAND_COUNT]; + OUString m_sStyles[COND_COMMAND_COUNT]; public: SwCondCollItem(sal_uInt16 nWhich = FN_COND_COLL); @@ -75,8 +75,8 @@ public: static const CommandStruct* GetCmds(); - const String& GetStyle(sal_uInt16 nPos) const; - void SetStyle( const String* pStyle, sal_uInt16 nPos); + OUString GetStyle(sal_uInt16 nPos) const; + void SetStyle(const OUString* pStyle, sal_uInt16 nPos); }; |