]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
Add support for compilers which do not have cname headers
[lyx.git] / src / insets / insetlabel.h
index 7fcb8ef91cdfe38e6c7597cbcee1846f63e909a0..229103330c8240d734e0f3c2239f778c01d44878 100644 (file)
@@ -23,7 +23,7 @@
 class InsetLabel: public InsetCommand {
 public:
        ///
-       InsetLabel(LString const & cmd);
+       InsetLabel(string const & cmd);
        ///
        InsetLabel() : InsetCommand("label") {;}
        ///
@@ -35,22 +35,22 @@ public:
        ///
        int GetNumberOfLabels() const;
        ///
-       LString getLabel(int) const;
+       string getLabel(int) const;
        ///
-       LString getScreenLabel() const { return getContents(); }
+       string getScreenLabel() const { return getContents(); }
        ///
        unsigned char Editable() const { return 0; }
        ///
        int Latex(FILE *file, signed char fragile);
        ///
-       int Latex(LString &file, signed char fragile);
+       int Latex(string &file, signed char fragile);
        ///
-       int Linuxdoc(LString &file);
+       int Linuxdoc(string &file);
        ///
-       int DocBook(LString &file);
+       int DocBook(string &file);
 private:
        /// This function escapes 8-bit characters
-       LString escape(LString const &) const;
+       string escape(string const &) const;
 };
 
 #endif