]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.h
more cursor dispatch
[lyx.git] / src / Spacing.h
index 5c51bb49f43e779c3cd266533e8cff3b091972cd..03c5db72318e79b7c6329a289d35bcc5d12516f8 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- * \file Spacing.h
+ * \file src/Spacing.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
@@ -14,7 +14,6 @@
 
 #include <iosfwd>
 
-#include "support/std_string.h"
 
 ///
 class Spacing {
@@ -38,7 +37,7 @@ public:
        Spacing(Spacing::Space sp, float val = 1.0) {
                set(sp, val);
        }
-       Spacing(Spacing::Space sp, string const & val) {
+       Spacing(Spacing::Space sp, std::string const & val) {
                set(sp, val);
        }
        ///
@@ -52,13 +51,13 @@ public:
        ///
        void set(Spacing::Space sp, float val = 1.0);
        ///
-       void set(Spacing::Space sp, string const & val) ;
+       void set(Spacing::Space sp, std::string const & val) ;
        ///
        void writeFile(std::ostream &, bool para = false) const;
        ///
-       string const writeEnvirBegin() const;
+       std::string const writeEnvirBegin() const;
        ///
-       string const writeEnvirEnd() const;
+       std::string const writeEnvirEnd() const;
 
 private:
        ///
@@ -66,7 +65,7 @@ private:
        ///
        float value;
        /// names of line spacing
-       static string const spacing_string[];
+       static std::string const spacing_string[];
 };