mirror of https://github.com/fltk/fltk
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:
parent
6f4c59079f
commit
e0fca85c74
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue