diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:26:27 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:26:27 +0000 |
commit | 39948f73625b113946391145dea48148c5db5d24 (patch) | |
tree | f15419cebdaf897ab2a5d050162369ed5acbb96c /udkapi | |
parent | 58c58893e19bb400d7e3115e1fe9a5bac47e4d04 (diff) |
INTEGRATION: CWS warnings01 (1.8.6); FILE MERGED
2005/09/23 13:42:06 sb 1.8.6.1: #i53898# Stricter error checking in idlc revealed an illegal use of an integral constant.
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/util/logging/LogLevel.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/udkapi/com/sun/star/util/logging/LogLevel.idl b/udkapi/com/sun/star/util/logging/LogLevel.idl index 824e56b220db..8979267968fe 100644 --- a/udkapi/com/sun/star/util/logging/LogLevel.idl +++ b/udkapi/com/sun/star/util/logging/LogLevel.idl @@ -4,9 +4,9 @@ * * $RCSfile: LogLevel.idl,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-09 16:41:47 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:26:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -56,7 +56,7 @@ published constants LogLevel const long FINE = 500; const long FINER = 400; const long FINEST = 300; - const long ALL = 0x80000000; + const long ALL = -0x80000000; }; //============================================================================= |