diff options
author | Kurt Zenker <kz@openoffice.org> | 2003-12-11 11:35:09 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2003-12-11 11:35:09 +0000 |
commit | f74974cfb4abd0073f34a02060e9d5735cccb351 (patch) | |
tree | ea78cb954c4dcfc0a411a10703c0a8e92a0ca1cd /sal | |
parent | 48ec6ee008cab0a1e22c3dcc897b0163c6d5dfcb (diff) |
INTEGRATION: CWS qadev14 (1.2.114); FILE MERGED
2003/11/28 10:54:31 lla 1.2.114.1: #114060# much code cleanups and warnings removed
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/rtl_strings/rtl_String_Const.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sal/qa/rtl_strings/rtl_String_Const.h b/sal/qa/rtl_strings/rtl_String_Const.h index 381e8b78568a..1632c0a01875 100644 --- a/sal/qa/rtl_strings/rtl_String_Const.h +++ b/sal/qa/rtl_strings/rtl_String_Const.h @@ -2,9 +2,9 @@ * * $RCSfile: rtl_String_Const.h,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2003-04-01 13:25:35 $ + * last change: $Author: kz $ $Date: 2003-12-11 12:35:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -287,12 +287,12 @@ static const sal_Int32 kTestStr1PlusStr6Len = kTestStr1Len + kTestStr6Len; static sal_Unicode aUStr50[kTestStr50Len+1]; static sal_Unicode aUStr51[kTestStr51Len+1]; static sal_Unicode aUStr52[kTestStr52Len+1]={83,117,110,32,32767}; - static sal_Unicode aUStr53[kTestStr53Len+1]={83,117,110,32,-32768}; + static sal_Unicode aUStr53[kTestStr53Len+1]={83,117,110,32,SAL_MIN_INT16 /*-32768*/}; static sal_Unicode aUStr54[kTestStr54Len+1]={32767}; - static sal_Unicode aUStr55[kTestStr55Len+1]={-32768}; + static sal_Unicode aUStr55[kTestStr55Len+1]={SAL_MIN_INT16 /*-32768*/}; static sal_Unicode aUStr56[kTestStr56Len+1]; static sal_Unicode aUStr57[kTestStr57Len+1]={40,3,5,7,9,11,13,15,115,117,110,32767}; - static sal_Unicode aUStr58[kTestStr58Len+1]={40,3,5,7,9,11,13,15,115,117,110,-32768}; + static sal_Unicode aUStr58[kTestStr58Len+1]={40,3,5,7,9,11,13,15,115,117,110,SAL_MIN_INT16 /*-32768*/}; static sal_Unicode aUStr1PlusUStr6[kTestStr1Len + kTestStr6Len + 1]; // we are already in "C" |