diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-25 20:57:45 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-25 21:04:14 +0200 |
commit | 09c19c6ddada306d1b23e312838e964325105ad5 (patch) | |
tree | 3fabf04b3131078c145ca0430f73d39c5ec3ece6 /cui | |
parent | c8b81c36a0e6f9ece3f02743e3b9f8aab7208cd4 (diff) |
Fix minor ULONG glitch
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optdict.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx index b3e6e7ccba64..09701a02d903 100644 --- a/cui/source/options/optdict.cxx +++ b/cui/source/options/optdict.cxx @@ -547,8 +547,8 @@ void SvxEditDictionaryDialog::ShowWords_Impl( sal_uInt16 nId ) if (aWordsLB.GetEntryCount()) { - aWordED .SetText( aWordsLB.GetEntryText(0LU, 0) ); - aReplaceED.SetText( aWordsLB.GetEntryText(0LU, 1) ); + aWordED .SetText( aWordsLB.GetEntryText((ULONG)0, 0) ); + aReplaceED.SetText( aWordsLB.GetEntryText((ULONG)0, 1) ); } LeaveWait(); |