]> git.lyx.org Git - lyx.git/blobdiff - src/ImportLaTeX.h
Fix assertion when inserting text strings via clipboard or ascii file; small
[lyx.git] / src / ImportLaTeX.h
index 9e332aaef5a02951d6ab278e526c3e501732148f..65bb0ce283f5d550457519bfdaff7bbfb1e71396 100644 (file)
@@ -9,11 +9,11 @@
  *           This file is Copyright (C) 1998
  *           Asger Alstrup
  *
- *======================================================
+ * ======================================================
  */
 
-#ifndef _IMPORTLATEX_H
-#define _IMPORTLATEX_H
+#ifndef IMPORTLATEX_H
+#define IMPORTLATEX_H
 
 #ifdef __GNUG__
 #pragma interface
@@ -29,7 +29,7 @@ public:
        /**
          file = name and path of the latex file
          */
-       ImportLaTeX(LString const & file);
+       ImportLaTeX(string const & file);
        
        /** Imports the document.
          Return 0 if fail.
@@ -37,7 +37,7 @@ public:
        Buffer * run();
 private:
        ///
-       LString file;
+       string file;
 };
 
 #endif