Kaydet (Commit) f8e77c08 authored tarafından Julien Nabet's avatar Julien Nabet

Revert "tdf#99589 tolower changed to rtl::toAsciiLowerCase"

Following Stephan's message https://gerrit.libreoffice.org/#/c/32462/

This reverts commit 47f338c1.

Change-Id: I6846fe495a9e1cccce56a2764c61b804c0eaa75c
Reviewed-on: https://gerrit.libreoffice.org/32637Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 7ed8646b
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <stdio.h> #include <stdio.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <rtl/character.hxx>
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
...@@ -45,7 +44,7 @@ int main(int argc, char *argv[]) ...@@ -45,7 +44,7 @@ int main(int argc, char *argv[])
/* Get parameters */ /* Get parameters */
while (argv[1] && (argv[1][0] == '-' || argv[1][0] == '/')) while (argv[1] && (argv[1][0] == '-' || argv[1][0] == '/'))
{ {
switch(rtl::toAsciiLowerCase(argv[1][1])) switch(tolower(argv[1][1]))
{ {
case 's': case 's':
argv++; argc++; argv++; argc++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment