[Libreoffice-commits] .: cui/source

Tor Lillqvist tml at kemper.freedesktop.org
Tue Jan 25 11:09:43 PST 2011


 cui/source/options/optdict.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6528457fe05b699a11983656b4d363d112366378
Author: Tor Lillqvist <tlillqvist at novell.com>
Date:   Tue Jan 25 20:57:45 2011 +0200

    Fix minor ULONG glitch

diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx
index 42d0d05..3f828e7 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();


More information about the Libreoffice-commits mailing list