1
0
Fork 0

Fix include and compiler warning

This commit is contained in:
Thomas Geymayer 2012-11-04 23:03:06 +01:00
parent eb44003309
commit c79510ef34
2 changed files with 3 additions and 2 deletions

View file

@ -308,7 +308,8 @@ class ClipboardX11:
struct Property struct Property
{ {
unsigned char *data; unsigned char *data;
int format, num_items; int format;
unsigned long num_items;
Atom type; Atom type;
}; };

View file

@ -34,7 +34,7 @@
#include <simgear/sg_inlines.h> #include <simgear/sg_inlines.h>
#include <simgear/canvas/Canvas.hxx> #include <simgear/canvas/Canvas.hxx>
#include <simgear/canvas/elements/element.hxx> #include <simgear/canvas/elements/CanvasElement.hxx>
static naRef canvasPrototype; static naRef canvasPrototype;
static naRef elementPrototype; static naRef elementPrototype;