summaryrefslogtreecommitdiff
path: root/cui/source/dialogs/hangulhanjadlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-07-24 15:00:55 +0200
committerNoel Grandin <noel@peralex.com>2013-07-25 08:13:50 +0200
commitd5af396843816b244b47c746d42f3a99afa1af01 (patch)
tree5531ee782d5080b82268634fc4fa6a415ce9b4e8 /cui/source/dialogs/hangulhanjadlg.cxx
parent1543cf5eb67810108e87e8ea73f08d51223a9957 (diff)
convert XubString to OUString
Change-Id: I55e676ea50c661aca0e0b33b6a32d513f9e6b0ac
Diffstat (limited to 'cui/source/dialogs/hangulhanjadlg.cxx')
-rw-r--r--cui/source/dialogs/hangulhanjadlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx
index 8ef83409bad5..5f46b8ead04f 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -464,7 +464,7 @@ namespace svx
m_aListBox.Clear();
m_aValueSet.Clear();
}
- void SuggestionDisplay::InsertEntry( const XubString& rStr )
+ void SuggestionDisplay::InsertEntry( const OUString& rStr )
{
sal_uInt16 nItemId = m_aListBox.InsertEntry( rStr ) + 1; //itemid == pos+1 (id 0 has special meaning)
m_aValueSet.InsertItem( nItemId );
@@ -480,11 +480,11 @@ namespace svx
{
return m_aListBox.GetEntryCount();
}
- XubString SuggestionDisplay::GetEntry( sal_uInt16 nPos ) const
+ OUString SuggestionDisplay::GetEntry( sal_uInt16 nPos ) const
{
return m_aListBox.GetEntry( nPos );
}
- XubString SuggestionDisplay::GetSelectEntry() const
+ OUString SuggestionDisplay::GetSelectEntry() const
{
return m_aListBox.GetSelectEntry();
}