From bd1ba50597ef373e98e3d3c4cb60727a64428ecd Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 17 Jul 2008 08:14:37 +0000 Subject: [PATCH] Patch level : 10.0 Files correlati : cg5.exe Ricompilazione Demo : [ ] Commento : Sostituita funzione deprecated stricmp con xvt_str_compare_ignoring_case git-svn-id: svn://10.65.10.50/trunk@16878 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- cg/cg5400.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cg/cg5400.cpp b/cg/cg5400.cpp index a91e2f90d..1b96535e7 100755 --- a/cg/cg5400.cpp +++ b/cg/cg5400.cpp @@ -173,7 +173,7 @@ bool TRipristina_stampa::inl_restore(const TString& lib, int year, int month) bool TRipristina_stampa::create() { - if (argc() > 2 && stricmp(argv(2), "INL") == 0) + if (argc() > 2 && xvt_str_compare_ignoring_case(argv(2), "INL") == 0) _op = restore_inl; return TSkeleton_application::create(); }