X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpacing.h;h=8d4884f658b6baff857730d5997290e4a2f3b76a;hb=f9a45f76521c1c2cad9dd05868b6cfcc6c81cdbe;hp=4ee1b284c075516ba672fdbc406b947af02f46a5;hpb=53b464c5e95ed708e9464db0499826894be450fd;p=lyx.git diff --git a/src/Spacing.h b/src/Spacing.h index 4ee1b284c0..8d4884f658 100644 --- a/src/Spacing.h +++ b/src/Spacing.h @@ -5,7 +5,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-1999 The LyX Team. + * Copyright 1995-2000 The LyX Team. * * ====================================================== */ @@ -36,14 +36,12 @@ public: Other }; /// - Spacing() - { + Spacing() { space = Single; value = getValue(); } /// - float getValue() const - { + float getValue() const { switch(space) { case Single: return 1.0; case Onehalf: return 1.25; @@ -53,13 +51,11 @@ public: return 1.0; } /// - Spacing::Space getSpace() const - { + Spacing::Space getSpace() const { return space; } /// - void set(Spacing::Space sp, float val = 1.0) - { + void set(Spacing::Space sp, float val = 1.0) { space = sp; if (sp == Other) { switch(int(val * 1000 + 0.5)) { @@ -71,8 +67,7 @@ public: } } /// - void set(Spacing::Space sp, char const * val) - { + void set(Spacing::Space sp, char const * val) { float fval; #ifdef HAVE_SSTREAM istringstream istr(val); @@ -83,10 +78,9 @@ public: set(sp, fval); } /// - void writeFile(ostream &); + void writeFile(ostream &) const; /// - friend bool operator!=(Spacing const & a, Spacing const & b) - { + friend bool operator!=(Spacing const & a, Spacing const & b) { if (a.space == b.space && a.getValue() == b.getValue()) return false; return true;