diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-05-04 14:14:41 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-05-04 14:14:41 +0000 |
commit | 9e41339a52d49b883b0cc4cd6eb773ab7c2cb60d (patch) | |
tree | 77432c508ee81effec397599571d678f86f81cdf /sal/rtl | |
parent | 182762b66758b694aac65e3b870fac77db9e8477 (diff) |
INTEGRATION: CWS perform07 (1.13.38); FILE MERGED
2006/04/27 10:57:20 mt 1.13.38.2: empty str currently can't be const
2005/11/04 16:28:27 mt 1.13.38.1: #i57365# No ref counting for empty string
Diffstat (limited to 'sal/rtl')
-rw-r--r-- | sal/rtl/source/string.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sal/rtl/source/string.c b/sal/rtl/source/string.c index f5e21879b63d..c80555e78233 100644 --- a/sal/rtl/source/string.c +++ b/sal/rtl/source/string.c @@ -4,9 +4,9 @@ * * $RCSfile: string.c,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:05:44 $ + * last change: $Author: rt $ $Date: 2006-05-04 15:14:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -65,6 +65,7 @@ /* static data to be referenced by all empty strings * the refCount is predefined to 1 and must never become 0 ! */ +// MT: Should be const, but doesn't work because of #i64835# static rtl_String aImplEmpty_rtl_String = { 1, /* sal_Int32 refCount; */ |