comctl32: Move inline to the beginning of the declaration.

Michael Stefaniuc mstefani at redhat.de
Wed Oct 7 18:20:12 CDT 2009


Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
---
 dlls/comctl32/monthcal.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/monthcal.c b/dlls/comctl32/monthcal.c
index 893a505..fd0d398 100644
--- a/dlls/comctl32/monthcal.c
+++ b/dlls/comctl32/monthcal.c
@@ -383,7 +383,7 @@ int MONTHCAL_CalculateDayOfWeek(DWORD day, DWORD month, DWORD year)
 }
 
 /* properly updates date to point on next month */
-void inline MONTHCAL_GetNextMonth(SYSTEMTIME *date)
+inline void MONTHCAL_GetNextMonth(SYSTEMTIME *date)
 {
   if(++date->wMonth > 12)
   {
@@ -395,7 +395,7 @@ void inline MONTHCAL_GetNextMonth(SYSTEMTIME *date)
 }
 
 /* properly updates date to point on prev month */
-void inline MONTHCAL_GetPrevMonth(SYSTEMTIME *date)
+inline void MONTHCAL_GetPrevMonth(SYSTEMTIME *date)
 {
   if(--date->wMonth < 1)
   {
-- 
1.6.5.rc2



More information about the wine-patches mailing list