X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpacing.h;h=0395b3e0cf53a7d355bd260727b89f71f5cedc83;hb=2523638092e2024bac408eee98ad2094bc4e4089;hp=ba8e530628d3d8632e98f5d6ce30ebac684c9007;hpb=03d1c984a0b22ec123cb86ba9004d9172a4190fb;p=lyx.git diff --git a/src/Spacing.h b/src/Spacing.h index ba8e530628..0395b3e0cf 100644 --- a/src/Spacing.h +++ b/src/Spacing.h @@ -1,11 +1,11 @@ // -*- C++ -*- /* This file is part of * ====================================================== - * + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -37,7 +37,7 @@ public: Default }; /// - Spacing() : space(Single), value(1.0) {} + Spacing() : space(Default), value(1.0) {} /// Spacing(Spacing::Space sp, float val = 1.0) { set(sp, val); @@ -63,11 +63,14 @@ public: string const writeEnvirBegin() const; /// string const writeEnvirEnd() const; + private: /// Space space; /// float value; + /// names of line spacing + static string const spacing_string[]; };