diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:21:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:24 +0100 |
commit | 43e4b96e8ecab707803fa5083a53437d6f799444 (patch) | |
tree | 783455cb0ed0c01fece4d86d2f7f3b5f85a8c08a /cui/source/dialogs/hangulhanjadlg.cxx | |
parent | ecf24f303217f55d1d2efdde7d58d0af083612d5 (diff) |
cui: Use appropriate OUString functions on string constants
Change-Id: I126c587777b7183dfbd9c60cfb0a6a980332a295
Diffstat (limited to 'cui/source/dialogs/hangulhanjadlg.cxx')
-rw-r--r-- | cui/source/dialogs/hangulhanjadlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx index 4ad76f297298..0133f617ed3d 100644 --- a/cui/source/dialogs/hangulhanjadlg.cxx +++ b/cui/source/dialogs/hangulhanjadlg.cxx @@ -1571,7 +1571,7 @@ namespace svx { if( DeleteEntryFromDictionary( m_aOriginal, m_rDictList[ m_nCurrentDict ] ) ) { - m_aOriginal = ""; + m_aOriginal.clear(); m_bModifiedOriginal = true; InitEditDictDialog( m_nCurrentDict ); } @@ -1586,7 +1586,7 @@ namespace svx if( m_nCurrentDict != _nSelDict ) { m_nCurrentDict = _nSelDict; - m_aOriginal = ""; + m_aOriginal.clear(); m_bModifiedOriginal = true; } |