]> git.lyx.org Git - lyx.git/blobdiff - src/box.h
Fix bug 886 and others not reported related with the document paper size.
[lyx.git] / src / box.h
index 156833f75acf65eedf7e6d7dfee742b5a8719381..002ba6d96b146b76f0864ca7e263e1c5930e66ae 100644 (file)
--- a/src/box.h
+++ b/src/box.h
  *
  * Negative values are allowed.
  */
-struct Box {
+class Box {
+public:
        int x1;
        int x2;
        int y1;
        int y2;
 
+       /// Zero-initialise the member variables.
+       Box();
        /// Initialise the member variables.
        Box(int x1_, int x2_, int y1_, int y2_);