diff options
author | Oliver Braun <obr@openoffice.org> | 2001-05-14 08:48:55 +0000 |
---|---|---|
committer | Oliver Braun <obr@openoffice.org> | 2001-05-14 08:48:55 +0000 |
commit | f902d5b74db405e523646c32f17de95f3a3ee23c (patch) | |
tree | 1b51c89058ab1f2e0a1bde459863a5eb7340ec95 /sal/osl/unx | |
parent | b8c5a9d4ba6382e1eed3a02ffd129d1345bd7877 (diff) |
rtl_str_compareIgnoreCase renamed
Diffstat (limited to 'sal/osl/unx')
-rw-r--r-- | sal/osl/unx/nlsupport.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/nlsupport.c b/sal/osl/unx/nlsupport.c index ade8db0a1a30..ae4f63b3a93c 100644 --- a/sal/osl/unx/nlsupport.c +++ b/sal/osl/unx/nlsupport.c @@ -2,9 +2,9 @@ * * $RCSfile: nlsupport.c,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: obr $ $Date: 2001-04-11 11:32:33 $ + * last change: $Author: obr $ $Date: 2001-05-14 09:48:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -85,7 +85,7 @@ typedef struct { static int _pair_compare (const char *key, const _pair *pair) { - int result = rtl_str_compareIgnoreCase( key, pair->key ); + int result = rtl_str_compareIgnoreAsciiCase( key, pair->key ); return result; } |