summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-09 13:04:53 +0200
committerNoel Grandin <noel@peralex.com>2013-09-11 09:45:34 +0200
commitb044a9535e0fb573fe5d28b0d44c96a3b5db66c2 (patch)
tree5dfe0057767c5a27425b5c72a206e8dca98fea7e /include/editeng
parenta2ea07f0b944ebb3506c8fafd285ef3bdff23e99 (diff)
convert include/editeng/bulletitem.hxx from String to OUString
Change-Id: I6697fea6069ceed71430b516673502de18f69862
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/bulletitem.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/editeng/bulletitem.hxx b/include/editeng/bulletitem.hxx
index 4ae8ade9ad17..b2b81a8e9fc4 100644
--- a/include/editeng/bulletitem.hxx
+++ b/include/editeng/bulletitem.hxx
@@ -63,12 +63,12 @@ class EDITENG_DLLPUBLIC SvxBulletItem : public SfxPoolItem
{
Font aFont;
GraphicObject* pGraphicObject;
- String aPrevText;
- String aFollowText;
- sal_uInt16 nStart;
- sal_uInt16 nStyle;
+ OUString aPrevText;
+ OUString aFollowText;
+ sal_uInt16 nStart;
+ sal_uInt16 nStyle;
long nWidth;
- sal_uInt16 nScale;
+ sal_uInt16 nScale;
sal_Unicode cSymbol;
sal_uInt8 nJustify;
sal_uInt16 nValidMask; // Only temporary for GetAttribs / setAttribs,
@@ -91,22 +91,22 @@ public:
OUString GetFullText() const;
sal_Unicode GetSymbol() const { return cSymbol; }
- String GetPrevText() const { return aPrevText; }
- String GetFollowText() const { return aFollowText; }
+ OUString GetPrevText() const { return aPrevText; }
+ OUString GetFollowText() const { return aFollowText; }
- sal_uInt16 GetStart() const { return nStart; }
+ sal_uInt16 GetStart() const { return nStart; }
long GetWidth() const { return nWidth; }
- sal_uInt16 GetStyle() const { return nStyle; }
- sal_uInt8 GetJustification() const { return nJustify; }
+ sal_uInt16 GetStyle() const { return nStyle; }
+ sal_uInt8 GetJustification() const { return nJustify; }
Font GetFont() const { return aFont; }
- sal_uInt16 GetScale() const { return nScale; }
+ sal_uInt16 GetScale() const { return nScale; }
const GraphicObject& GetGraphicObject() const;
void SetGraphicObject( const GraphicObject& rGraphicObject );
void SetSymbol( sal_Unicode c) { cSymbol = c; }
- void SetPrevText( const String& rStr) { aPrevText = rStr;}
- void SetFollowText(const String& rStr) { aFollowText=rStr;}
+ void SetPrevText( const OUString& rStr) { aPrevText = rStr;}
+ void SetFollowText(const OUString& rStr) { aFollowText=rStr;}
void SetStart( sal_uInt16 nNew ) { nStart = nNew; }
void SetWidth( long nNew ) { nWidth = nNew; }