Removed compilation warning of signed/unsigned comparison.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10160 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy
2014-05-23 17:03:08 +00:00
parent 07dd8ba328
commit 423ef813f0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ public:
class Fl_GDI_Surface_ : public Fl_Paged_Device { class Fl_GDI_Surface_ : public Fl_Paged_Device {
int width; int width;
int height; int height;
int depth; unsigned depth;
POINT origins[10]; POINT origins[10];
public: public:
static const char *class_id; static const char *class_id;
+1 -1
View File
@@ -261,7 +261,7 @@ void Fl_Copy_Surface::complete_copy_pdf_and_tiff()
/* graphics driver that translates all graphics coordinates before calling Xlib */ /* graphics driver that translates all graphics coordinates before calling Xlib */
class Fl_translated_Xlib_Graphics_Driver_ : public Fl_Xlib_Graphics_Driver { class Fl_translated_Xlib_Graphics_Driver_ : public Fl_Xlib_Graphics_Driver {
int offset_x, offset_y; // translation between user and graphical coordinates: graphical = user + offset int offset_x, offset_y; // translation between user and graphical coordinates: graphical = user + offset
int depth; // depth of translation stack unsigned depth; // depth of translation stack
int stack_x[20], stack_y[20]; // translation stack allowing cumulative translations int stack_x[20], stack_y[20]; // translation stack allowing cumulative translations
public: public:
static const char *class_id; static const char *class_id;