Kaydet (Commit) b044a953 authored tarafından Noel Grandin's avatar Noel Grandin

convert include/editeng/bulletitem.hxx from String to OUString

Change-Id: I6697fea6069ceed71430b516673502de18f69862
üst a2ea07f0
...@@ -63,12 +63,12 @@ class EDITENG_DLLPUBLIC SvxBulletItem : public SfxPoolItem ...@@ -63,12 +63,12 @@ class EDITENG_DLLPUBLIC SvxBulletItem : public SfxPoolItem
{ {
Font aFont; Font aFont;
GraphicObject* pGraphicObject; GraphicObject* pGraphicObject;
String aPrevText; OUString aPrevText;
String aFollowText; OUString aFollowText;
sal_uInt16 nStart; sal_uInt16 nStart;
sal_uInt16 nStyle; sal_uInt16 nStyle;
long nWidth; long nWidth;
sal_uInt16 nScale; sal_uInt16 nScale;
sal_Unicode cSymbol; sal_Unicode cSymbol;
sal_uInt8 nJustify; sal_uInt8 nJustify;
sal_uInt16 nValidMask; // Only temporary for GetAttribs / setAttribs, sal_uInt16 nValidMask; // Only temporary for GetAttribs / setAttribs,
...@@ -91,22 +91,22 @@ public: ...@@ -91,22 +91,22 @@ public:
OUString GetFullText() const; OUString GetFullText() const;
sal_Unicode GetSymbol() const { return cSymbol; } sal_Unicode GetSymbol() const { return cSymbol; }
String GetPrevText() const { return aPrevText; } OUString GetPrevText() const { return aPrevText; }
String GetFollowText() const { return aFollowText; } OUString GetFollowText() const { return aFollowText; }
sal_uInt16 GetStart() const { return nStart; } sal_uInt16 GetStart() const { return nStart; }
long GetWidth() const { return nWidth; } long GetWidth() const { return nWidth; }
sal_uInt16 GetStyle() const { return nStyle; } sal_uInt16 GetStyle() const { return nStyle; }
sal_uInt8 GetJustification() const { return nJustify; } sal_uInt8 GetJustification() const { return nJustify; }
Font GetFont() const { return aFont; } Font GetFont() const { return aFont; }
sal_uInt16 GetScale() const { return nScale; } sal_uInt16 GetScale() const { return nScale; }
const GraphicObject& GetGraphicObject() const; const GraphicObject& GetGraphicObject() const;
void SetGraphicObject( const GraphicObject& rGraphicObject ); void SetGraphicObject( const GraphicObject& rGraphicObject );
void SetSymbol( sal_Unicode c) { cSymbol = c; } void SetSymbol( sal_Unicode c) { cSymbol = c; }
void SetPrevText( const String& rStr) { aPrevText = rStr;} void SetPrevText( const OUString& rStr) { aPrevText = rStr;}
void SetFollowText(const String& rStr) { aFollowText=rStr;} void SetFollowText(const OUString& rStr) { aFollowText=rStr;}
void SetStart( sal_uInt16 nNew ) { nStart = nNew; } void SetStart( sal_uInt16 nNew ) { nStart = nNew; }
void SetWidth( long nNew ) { nWidth = nNew; } void SetWidth( long nNew ) { nWidth = nNew; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment