Piotr Caban : msvcp90: Added _Locinfo:: _Getfalse and _Gettrue implementation.

Alexandre Julliard julliard at winehq.org
Thu Dec 8 13:43:39 CST 2011


Module: wine
Branch: master
Commit: dc1a38d38544b05790da6f027a6bcdead3f5536f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dc1a38d38544b05790da6f027a6bcdead3f5536f

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Thu Dec  8 12:09:15 2011 +0100

msvcp90: Added _Locinfo::_Getfalse and _Gettrue implementation.

---

 dlls/msvcp90/locale.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c
index a668d18..ae270ae 100644
--- a/dlls/msvcp90/locale.c
+++ b/dlls/msvcp90/locale.c
@@ -951,8 +951,8 @@ const char* __thiscall _Locinfo__Getmonths(const _Locinfo *this)
 DEFINE_THISCALL_WRAPPER(_Locinfo__Getfalse, 4)
 const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this)
 {
-    FIXME("(%p) stub\n", this);
-    return NULL;
+    TRACE("(%p)\n", this);
+    return "false";
 }
 
 /* ?_Gettrue at _Locinfo@std@@QBEPBDXZ */
@@ -960,8 +960,8 @@ const char* __thiscall _Locinfo__Getfalse(const _Locinfo *this)
 DEFINE_THISCALL_WRAPPER(_Locinfo__Gettrue, 4)
 const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this)
 {
-    FIXME("(%p) stub\n", this);
-    return NULL;
+    TRACE("(%p)\n", this);
+    return "true";
 }
 
 /* ?_Getlconv at _Locinfo@std@@QBEPBUlconv@@XZ */




More information about the wine-cvs mailing list