]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphParameters.h
ws changes only
[lyx.git] / src / ParagraphParameters.h
index 03cd251c8999bcec7c18b99b892cb72dc4fda338..7c1726267a6d40fb7a749a5c880a76f5c51da128 100644 (file)
@@ -19,8 +19,8 @@
 
 #include "support/types.h"
 
-#include "support/std_string.h"
 #include <iosfwd>
+#include <string>
 
 class BufferView;
 class LyXLength;
@@ -90,13 +90,13 @@ public:
        ///
        void appendix(bool);
        ///
-       string const & labelString() const;
+       std::string const & labelString() const;
        ///
-       void labelString(string const &);
+       void labelString(std::string const &);
        ///
-       string const & labelWidthString() const;
+       std::string const & labelWidthString() const;
        ///
-       void labelWidthString(string const &);
+       void labelWidthString(std::string const &);
        ///
        LyXLength const & leftIndent() const;
        ///
@@ -122,12 +122,12 @@ private:
     The function also generates some additional info needed by the
     Paragraph dialog.
  */
-void params2string(Paragraph const & par, string & data);
+void params2string(Paragraph const & par, std::string & data);
 
 /** Given \param data, an encoding of the ParagraphParameters generated
     in the Paragraph dialog, this function sets the current paragraph
     appropriately.
  */
-void setParagraphParams(BufferView & bv, string const & data);
+void setParagraphParams(BufferView & bv, std::string const & data);
 
 #endif