[Libreoffice-commits] .: vcl/unx

Caolán McNamara caolan at kemper.freedesktop.org
Tue Jan 4 00:20:42 PST 2011


 vcl/unx/source/app/i18n_cb.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8b6fe5fa631aafa87c43954643b6552ee2632e7a
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Jan 4 08:20:35 2011 +0000

    fix build error

diff --git a/vcl/unx/source/app/i18n_cb.cxx b/vcl/unx/source/app/i18n_cb.cxx
index a6bfaa8..dd5c2b8 100644
--- a/vcl/unx/source/app/i18n_cb.cxx
+++ b/vcl/unx/source/app/i18n_cb.cxx
@@ -501,7 +501,7 @@ PreeditCaretCallback ( XIC, XPointer,XIMPreeditCaretCallbackStruct* )
 Bool
 IsControlCode(sal_Unicode nChar)
 {
-    if ( nChar <= 0x1F // C0 controls )
+    if ( nChar <= 0x1F /* C0 controls */ )
         return True;
     else
         return False;


More information about the Libreoffice-commits mailing list