[Libreoffice-commits] core.git: cui/source
Tor Lillqvist
tml at collabora.com
Tue Oct 1 03:39:53 PDT 2013
cui/source/dialogs/hangulhanjadlg.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5055eb2ca3b8f0f2c8e04e3784b7611203e56f0b
Author: Tor Lillqvist <tml at collabora.com>
Date: Tue Oct 1 13:39:03 2013 +0300
Fix error: assigning to 'rtl::OUString *' from incompatible type 'const int'
Change-Id: I8374a78268a48377c6c00c710a4fa28aa26c2fe6
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx
index 718c9a4..662f6ef 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;
}
More information about the Libreoffice-commits
mailing list