diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-12 20:13:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-13 09:22:29 +0100 |
commit | 6b2cc1eb6c7404d6934aad2d2c78555a45c9b4a8 (patch) | |
tree | f27113c8129692c06dc03602411a8f880b94bddb /formula | |
parent | 89253a0c258c1107f598e5a37470ecb09055a895 (diff) |
XubString->OUString
Change-Id: I1db6254b23c5203c20c168989656d320f86a3bb9
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/ui/dlg/funcutl.cxx | 2 | ||||
-rw-r--r-- | formula/source/ui/dlg/structpg.cxx | 2 | ||||
-rw-r--r-- | formula/source/ui/dlg/structpg.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/formula/source/ui/dlg/funcutl.cxx b/formula/source/ui/dlg/funcutl.cxx index eb2bb819f4ed..3b9556a187fe 100644 --- a/formula/source/ui/dlg/funcutl.cxx +++ b/formula/source/ui/dlg/funcutl.cxx @@ -896,7 +896,7 @@ void RefEdit::SetRefValid(bool bValid) } } -void RefEdit::SetText( const XubString& rStr ) +void RefEdit::SetText(const OUString& rStr) { Edit::SetText( rStr ); UpdateHdl( &aTimer ); diff --git a/formula/source/ui/dlg/structpg.cxx b/formula/source/ui/dlg/structpg.cxx index 32f0de7be037..d672f73c1ab4 100644 --- a/formula/source/ui/dlg/structpg.cxx +++ b/formula/source/ui/dlg/structpg.cxx @@ -45,7 +45,7 @@ StructListBox::StructListBox(Window* pParent, const ResId& rResId ): } SvTreeListEntry* StructListBox::InsertStaticEntry( - const XubString& rText, + const OUString& rText, const Image& rEntryImg, SvTreeListEntry* pParent, sal_uLong nPos, IFormulaToken* pToken ) { diff --git a/formula/source/ui/dlg/structpg.hxx b/formula/source/ui/dlg/structpg.hxx index c68459b90280..fe68eead386f 100644 --- a/formula/source/ui/dlg/structpg.hxx +++ b/formula/source/ui/dlg/structpg.hxx @@ -52,7 +52,7 @@ public: /** Inserts an entry with static image (no difference between collapsed/expanded). */ SvTreeListEntry* InsertStaticEntry( - const XubString& rText, + const OUString& rText, const Image& rEntryImg, SvTreeListEntry* pParent = NULL, sal_uLong nPos = LIST_APPEND, |