1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-03 12:24:17 +01:00

util: Added a few missing 'static' attributes for functions

This commit is contained in:
Christophe CURIS
2013-05-12 00:24:53 +02:00
committed by Carlos R. Mafra
parent d517d5cac0
commit 549cefc47b
12 changed files with 34 additions and 34 deletions

View File

@@ -275,7 +275,7 @@ static void update(void *d)
data->tid = WMAddTimerHandler(data->refreshrate, update, data);
}
void resizedWindow(void *d, WMNotification * notif)
static void resizedWindow(void *d, WMNotification * notif)
{
BufferData *data = (BufferData *) d;
WMView *view = (WMView *) WMGetNotificationObject(notif);
@@ -286,7 +286,7 @@ void resizedWindow(void *d, WMNotification * notif)
resizeBufferData(data, size.width, size.height, data->magfactor);
}
void closeWindow(WMWidget * w, void *d)
static void closeWindow(WMWidget * w, void *d)
{
BufferData *data = (BufferData *) d;