Module: wine Branch: master Commit: 75bf84e60b8dea05760b0f0036355b3f8750e26f URL: http://source.winehq.org/git/wine.git/?a=commit;h=75bf84e60b8dea05760b0f0036...
Author: Michael Karcher wine@mkarcher.dialup.fu-berlin.de Date: Sun Sep 14 23:22:15 2008 +0200
ole32/compobj: Fix function name in comment.
---
dlls/ole32/compobj.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c index 69f42fc..bdf1a6d 100644 --- a/dlls/ole32/compobj.c +++ b/dlls/ole32/compobj.c @@ -209,8 +209,8 @@ static void COMPOBJ_InitProcess( void ) * following class is created. The *caller* of CoMarshalInterface (i.e., the * application) is responsible for pumping the message loop in that thread. * The WM_USER messages which point to the RPCs are then dispatched to - * COM_AptWndProc by the user's code from the apartment in which the interface - * was unmarshalled. + * apartment_wndproc by the user's code from the apartment in which the + * interface was unmarshalled. */ memset(&wclass, 0, sizeof(wclass)); wclass.lpfnWndProc = apartment_wndproc;