diff options
-rw-r--r-- | cui/source/dialogs/hangulhanjadlg.cxx | 6 | ||||
-rw-r--r-- | cui/source/inc/hangulhanjadlg.hxx | 6 |
2 files changed, 6 insertions, 6 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(); } diff --git a/cui/source/inc/hangulhanjadlg.hxx b/cui/source/inc/hangulhanjadlg.hxx index 48284bc5165a..e469f22d9823 100644 --- a/cui/source/inc/hangulhanjadlg.hxx +++ b/cui/source/inc/hangulhanjadlg.hxx @@ -66,13 +66,13 @@ namespace svx void SetSelectHdl( const Link& rLink ); void Clear(); - void InsertEntry( const XubString& rStr ); + void InsertEntry( const OUString& rStr ); void SelectEntryPos( sal_uInt16 nPos ); sal_uInt16 GetEntryCount() const; - XubString GetEntry( sal_uInt16 nPos ) const; - XubString GetSelectEntry() const; + OUString GetEntry( sal_uInt16 nPos ) const; + OUString GetSelectEntry() const; virtual void StateChanged( StateChangedType nStateChange ); |