Module: wine Branch: master Commit: e10dcd0c328d7ed26e6d38f25bb87f9603938ccc URL: http://source.winehq.org/git/wine.git/?a=commit;h=e10dcd0c328d7ed26e6d38f25b...
Author: Piotr Caban piotr@codeweavers.com Date: Fri Nov 25 10:46:06 2011 +0100
msvcp90: Added locale::name implementation.
---
dlls/msvcp90/locale.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index f985136..29069e7 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -647,9 +647,8 @@ const locale* __cdecl locale_classic(void) DEFINE_THISCALL_WRAPPER_RETPTR(locale_name, 4) basic_string_char __thiscall locale_name(const locale *this) { - basic_string_char ret = { 0 }; /* FIXME */ - FIXME( "(%p) stub\n", this); - return ret; + TRACE( "(%p)\n", this); + return this->ptr->name; }
/* ??0_Timevec@std@@QAE@ABV01@@Z */