]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / insets / insetref.h
index f7519042fe872f24bbd87da9e980d84092b5c78d..a64e02d27e64a008f8e6d0b91f403c934f06de6f 100644 (file)
@@ -35,7 +35,7 @@ public:
        ///
        InsetRef(): InsetCommand("ref") { flag = InsetRef::REF; }
        ///
-       InsetRef(LString const &, Buffer*);
+       InsetRef(string const &, Buffer*);
        ///
        InsetRef(InsetCommand const&, Buffer*);
        ///
@@ -53,7 +53,7 @@ public:
         ///
        bool Display() const { return false; }
        ///
-       LString getScreenLabel() const;
+       string getScreenLabel() const;
        ///
        InsetRef::Ref_Flags getFlag() { return flag; }
        ///
@@ -63,14 +63,14 @@ public:
        ///
        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;
        ///
         Ref_Flags flag;
         ///