1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-30 02:12:30 +01:00

WINGs: Added explicit parameter list to function prototypes (Simple cases)

It is dangerous to let the compiler know about a function without
letting him know the arguments because he won't be able to report
invalid calls.

This patch concern the cases where adding the arguments did not
need other code change.
This commit is contained in:
Christophe CURIS
2013-05-12 00:24:44 +02:00
committed by Carlos R. Mafra
parent a622197faa
commit 708bc27e3f
8 changed files with 10 additions and 10 deletions

View File

@@ -24,7 +24,7 @@ typedef struct W_ProgressIndicator {
/* define if only the ticks within the progress region should be displayed */
#undef SHOW_PROGRESS_TICKS_ONLY
static void didResizeProgressIndicator();
static void didResizeProgressIndicator(W_ViewDelegate * self, WMView * view);
W_ViewDelegate _ProgressIndicatorDelegate = {
NULL,