diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-06-29 09:16:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-06-29 11:20:32 +0100 |
commit | 9e0cbe5eb3f4785d8db26f87ce0208823c87c5ad (patch) | |
tree | 139e2a2af31e5ba6a1549cf93c12e951b8ad570b /editeng/inc | |
parent | 6c759da0442f5123a4a4355e8dc9c926a49d25d7 (diff) |
some pesky XubStrings
Change-Id: Ib4095dee416cab6d954e1612d2e3f6e2d4464f48
Diffstat (limited to 'editeng/inc')
-rw-r--r-- | editeng/inc/editeng/outliner.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editeng/inc/editeng/outliner.hxx b/editeng/inc/editeng/outliner.hxx index da3b9c28d94a..800794536337 100644 --- a/editeng/inc/editeng/outliner.hxx +++ b/editeng/inc/editeng/outliner.hxx @@ -136,16 +136,16 @@ private: Paragraph& operator=(const Paragraph& rPara ); - sal_uInt16 nFlags; - XubString aBulText; + sal_uInt16 nFlags; + rtl::OUString aBulText; Size aBulSize; - sal_Bool bVisible; + sal_Bool bVisible; sal_Bool IsVisible() const { return bVisible; } - void SetText( const XubString& rText ) { aBulText = rText; aBulSize.Width() = -1; } + void SetText( const rtl::OUString& rText ) { aBulText = rText; aBulSize.Width() = -1; } void Invalidate() { aBulSize.Width() = -1; } void SetDepth( sal_Int16 nNewDepth ) { nDepth = nNewDepth; aBulSize.Width() = -1; } - const XubString& GetText() const { return aBulText; } + const rtl::OUString& GetText() const { return aBulText; } Paragraph( sal_Int16 nDepth ); Paragraph( const Paragraph& ); |