Commit 8a4b7f9f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

comctl32: void functions should not return a value.

parent 25ea5324
......@@ -481,13 +481,13 @@ static inline void MONTHCAL_GetMonth(SYSTEMTIME *date, INT months)
/* properly updates date to point on next month */
static inline void MONTHCAL_GetNextMonth(SYSTEMTIME *date)
{
return MONTHCAL_GetMonth(date, 1);
MONTHCAL_GetMonth(date, 1);
}
/* properly updates date to point on prev month */
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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment