diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2003-06-07 22:09:48 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2003-06-07 22:09:48 +0000 |
commit | 5191c1d5a85d6037d951f877eee67b94b669da7e (patch) | |
tree | 57007548daed9ef31884fdbe9398458989db24a3 /editors/openoffice-3/files/patch-tools+source+string+tstring.cxx | |
parent | Upgrade to OO1.1 beta2. (diff) |
Upgrade to OO1.1 beta2.
Diffstat (limited to 'editors/openoffice-3/files/patch-tools+source+string+tstring.cxx')
-rw-r--r-- | editors/openoffice-3/files/patch-tools+source+string+tstring.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/openoffice-3/files/patch-tools+source+string+tstring.cxx b/editors/openoffice-3/files/patch-tools+source+string+tstring.cxx index 12bd6bd0b244..43a78f4c538b 100644 --- a/editors/openoffice-3/files/patch-tools+source+string+tstring.cxx +++ b/editors/openoffice-3/files/patch-tools+source+string+tstring.cxx @@ -1,5 +1,5 @@ ---- ../tools/source/string/tstring.cxx.orig Sat Aug 10 12:53:42 2002 -+++ ../tools/source/string/tstring.cxx Sat Aug 10 12:54:16 2002 +--- ../tools/source/string/tstring.cxx.orig Thu Mar 27 18:04:53 2003 ++++ ../tools/source/string/tstring.cxx Sat May 31 23:04:05 2003 @@ -103,6 +103,9 @@ xub_StrLen ImplStringLen( const sal_Char* pStr ) { @@ -8,7 +8,7 @@ + if (pStr == NULL) + return(0); while( *pTempStr ) - pTempStr++; + ++pTempStr; return (xub_StrLen)(pTempStr-pStr); @@ -113,6 +116,9 @@ xub_StrLen ImplStringLen( const sal_Unicode* pStr ) @@ -18,5 +18,5 @@ + if (pStr == NULL) + return(0); while( *pTempStr ) - pTempStr++; + ++pTempStr; return (xub_StrLen)(pTempStr-pStr); |