mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-03 04:14:20 +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:
committed by
Carlos R. Mafra
parent
a622197faa
commit
708bc27e3f
@@ -28,8 +28,8 @@ static void destroyScrollView(ScrollView * sPtr);
|
||||
static void paintScrollView(ScrollView * sPtr);
|
||||
static void handleEvents(XEvent * event, void *data);
|
||||
static void handleViewportEvents(XEvent * event, void *data);
|
||||
static void resizeScrollView();
|
||||
static void updateScrollerProportion();
|
||||
static void resizeScrollView(W_ViewDelegate *self, WMView *view);
|
||||
static void updateScrollerProportion(ScrollView *sPtr);
|
||||
|
||||
W_ViewDelegate _ScrollViewViewDelegate = {
|
||||
NULL,
|
||||
|
||||
Reference in New Issue
Block a user