comctl32: Move inline to the beginning of the declaration.

Michael Stefaniuc mstefani at redhat.com
Thu Oct 8 05:40:08 CDT 2009


Alexandre,

please apply Francois version of this patch.

bye
	michael

Michael Stefaniuc wrote:
> 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)
>    {



More information about the wine-devel mailing list