]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetinfo.h
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / insets / insetinfo.h
index 47df1a11f601288d87bcf6d28594562526c7ee52..edd3e9fa1e33d76713bd6e7aea6d5ca566c6e6ca 100644 (file)
@@ -32,7 +32,7 @@ public:
        ///
        InsetInfo();
        ///
-       InsetInfo(LString const & string);
+       InsetInfo(string const & string);
        ///
        ~InsetInfo();
        ///
@@ -50,11 +50,11 @@ 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);
        /// what appears in the minibuffer when opening
        char const* EditMessage() {return "Opened note";}
        ///
@@ -65,15 +65,15 @@ public:
        Inset::Code LyxCode() const;
        ///
        Inset* Clone();
+       ///
+       static void CloseInfoCB(FL_OBJECT *, long data);
 private:
        ///
-       LString contents;
+       string contents;
        ///
        FL_FORM *form;
        ///
        FL_OBJECT *strobj;
-       ///
-       static void CloseInfoCB(FL_OBJECT *, long data);
 };
 
 #endif