comctl32: void functions should not return a value.

This commit is contained in:
Andrew Talbot 2011-08-06 12:51:11 +01:00 committed by Alexandre Julliard
parent 25ea532443
commit 8a4b7f9f22
1 changed files with 2 additions and 2 deletions

View File

@ -481,13 +481,13 @@ static inline void MONTHCAL_GetMonth(SYSTEMTIME *date, INT months)
/* properly updates date to point on next month */ /* properly updates date to point on next month */
static inline void MONTHCAL_GetNextMonth(SYSTEMTIME *date) static inline void MONTHCAL_GetNextMonth(SYSTEMTIME *date)
{ {
return MONTHCAL_GetMonth(date, 1); MONTHCAL_GetMonth(date, 1);
} }
/* properly updates date to point on prev month */ /* properly updates date to point on prev month */
static inline void MONTHCAL_GetPrevMonth(SYSTEMTIME *date) static inline void MONTHCAL_GetPrevMonth(SYSTEMTIME *date)
{ {
return MONTHCAL_GetMonth(date, -1); MONTHCAL_GetMonth(date, -1);
} }
/* Returns full date for a first currently visible day */ /* Returns full date for a first currently visible day */