summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-01 13:39:03 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-01 13:39:22 +0300
commit5055eb2ca3b8f0f2c8e04e3784b7611203e56f0b (patch)
tree5f1aef2160a50dd12735d77ffb9069a02c69b3a2 /cui
parentUpdated core (diff)
downloadcore-5055eb2ca3b8f0f2c8e04e3784b7611203e56f0b.tar.gz
core-5055eb2ca3b8f0f2c8e04e3784b7611203e56f0b.zip
Fix error: assigning to 'rtl::OUString *' from incompatible type 'const int'
Change-Id: I8374a78268a48377c6c00c710a4fa28aa26c2fe6
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/hangulhanjadlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx
index 718c9a47b66f..662f6ef1cb4f 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -1261,7 +1261,7 @@ namespace svx
};
SuggestionList::SuggestionList() :
- m_vElements(MAXNUM_SUGGESTIONS, NULL)
+ m_vElements(MAXNUM_SUGGESTIONS, static_cast<OUString*>(NULL))
{
m_nAct = m_nNumOfEntries = 0;
}