Added missing initialization in Fl_Paged_Device constructor

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9343 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2012-04-13 16:57:14 +00:00
parent 6f4c59079f
commit e0fca85c74
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ protected:
/** \brief vertical offset to the origin of graphics coordinates */
int y_offset;
/** \brief The constructor */
Fl_Paged_Device() : Fl_Surface_Device(NULL) {};
Fl_Paged_Device() : Fl_Surface_Device(NULL), x_offset(0), y_offset(0) {};
#if FLTK_ABI_VERSION >= 10302
public:
/** \brief The destructor */