Piotr Caban : msvcp90: Added time_get<char>::do_date_order implementation.
Module: wine Branch: master Commit: 69ed143be6580ba4a50a37f1baad5f6f23bf9600 URL: http://source.winehq.org/git/wine.git/?a=commit;h=69ed143be6580ba4a50a37f1ba... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Wed Feb 25 15:34:10 2015 +0100 msvcp90: Added time_get<char>::do_date_order implementation. --- dlls/msvcp90/locale.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index 5237e09..397d8c5 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -9471,8 +9471,8 @@ DEFINE_THISCALL_WRAPPER(time_get_char_do_date_order, 4) /* virtual */ #endif dateorder __thiscall time_get_char_do_date_order(const time_get_char *this) { - FIXME("(%p) stub\n", this); - return 0; + TRACE("(%p)\n", this); + return this->dateorder; } /* ?date_order@?$time_get(a)DV?$istreambuf_iterator(a)DU?$char_traits(a)D@std@@@std@@@std@@QBE?AW4dateorder(a)time_base@2(a)XZ */
participants (1)
-
Alexandre Julliard