]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_cb.h
Scons: update_po should now work (missing dependency though)
[lyx.git] / src / lyx_cb.h
index a9bdde8161d77ea606ba430d659274f0a3a144c5..03cecc4a7058b103faa96d56d1a68dcbeb23c09b 100644 (file)
 
 #include <string>
 
+namespace lyx {
+
 class Buffer;
 class BufferView;
+class LyXView;
 
 ///
 extern bool quitting;
@@ -29,9 +32,12 @@ void autoSave(BufferView * bv);
 ///
 void newFile(BufferView * bv, std::string const & filename);
 ///
-void insertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
+void insertPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-std::string getContentsOfAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
+std::string getContentsOfPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-void reconfigure(BufferView * bv);
+void reconfigure(LyXView & lv);
+
+} // namespace lyx
+
 #endif