mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-25 07:32:36 +01:00
Fixed structure declaration syntax
As reported by Iain Patterson, the clang compiler is (by default) strictier on having clean C syntax. A few structure definition did not comply, now they do. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
committed by
Carlos R. Mafra
parent
528955c447
commit
1e76a78604
@@ -4,7 +4,7 @@
|
||||
#include "geomview.h"
|
||||
|
||||
|
||||
typedef struct W_GeometryView {
|
||||
struct W_GeometryView {
|
||||
W_Class widgetClass;
|
||||
WMView *view;
|
||||
|
||||
@@ -25,7 +25,7 @@ typedef struct W_GeometryView {
|
||||
} data;
|
||||
|
||||
unsigned showPosition:1;
|
||||
} WGeometryView;
|
||||
};
|
||||
|
||||
static void handleEvents(XEvent * event, void *clientData);
|
||||
static void paint(WGeometryView * gview);
|
||||
|
||||
Reference in New Issue
Block a user