1
0
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:
Christophe CURIS
2013-06-10 22:38:08 +02:00
committed by Carlos R. Mafra
parent 528955c447
commit 1e76a78604
2 changed files with 8 additions and 8 deletions

View File

@@ -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);