]> git.lyx.org Git - lyx.git/blobdiff - src/dimension.h
ws changes mostly
[lyx.git] / src / dimension.h
index f6ab891cc99760e46fb312021482f799fa0046cb..de5691cb2f813e6bb5797fa4c766899d27fe27f4 100644 (file)
@@ -16,7 +16,7 @@
 class LyXFont;
 
 /// Simple wrapper around three ints
-struct Dimension {
+class Dimension {
 public:
        /// constructor
        Dimension() : wid(0), asc(0), des(0) {}
@@ -46,7 +46,7 @@ public:
 public:
        /// these are intentionally public as things like
        ///
-       ///   dim.asc += 20; 
+       ///   dim.asc += 20;
        ///
        /// are used all over the place and "hiding" those behind
        ///