Piotr Caban : msvcp90: Added _Locinfo::_Getlconv implementation.

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


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

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

msvcp90: Added _Locinfo::_Getlconv implementation.

---

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

diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c
index ae270ae..4e9e5a0 100644
--- a/dlls/msvcp90/locale.c
+++ b/dlls/msvcp90/locale.c
@@ -969,8 +969,8 @@ const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this)
 DEFINE_THISCALL_WRAPPER(_Locinfo__Getlconv, 4)
 const struct lconv* __thiscall _Locinfo__Getlconv(const _Locinfo *this)
 {
-    FIXME("(%p) stub\n", this);
-    return NULL;
+    TRACE("(%p)\n", this);
+    return localeconv();
 }
 
 /* ?_Getname at _Locinfo@std@@QBE?AV?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@2 at XZ */




More information about the wine-cvs mailing list