]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetexternal.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetexternal.h
index 2dfd03ef87e052e4d449578c99a480308a108486..7cce4c5d58e0b91bd52d985651b0c18655ac2ca8 100644 (file)
@@ -3,7 +3,7 @@
  * ======================================================
  *
  *           LyX, The Document Processor
- *     
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -26,8 +26,8 @@ class InsetExternal : public InsetButton {
 public:
        /// hold parameters settable from the GUI
        struct Params {
-               Params(string const & f = string(), 
-                                       string const & p = string(), 
+               Params(string const & f = string(),
+                                       string const & p = string(),
                                        ExternalTemplate const & t = ExternalTemplate())
                        : filename(f), parameters(p), templ(t) {}
                /// the filename
@@ -61,20 +61,20 @@ public:
         is in a free-spacing paragraph.
         */
        virtual int latex(Buffer const *, std::ostream &, bool fragile,
-                         bool free_spc) const;
+                         bool free_spc) const;
        /// write ASCII output to the ostream
        virtual int ascii(Buffer const *, std::ostream &, int linelen) const;
        /// write LinuxDoc output to the ostream
        virtual int linuxdoc(Buffer const *, std::ostream &) const;
        /// write DocBook output to the ostream
-       virtual int docBook(Buffer const *, std::ostream &) const;
+       virtual int docbook(Buffer const *, std::ostream &) const;
 
        /// Updates needed features for this inset.
        virtual void validate(LaTeXFeatures & features) const;
 
        /// returns LyX code associated with the inset. Used for TOC, ...)
        virtual Inset::Code lyxCode() const { return EXTERNAL_CODE; }
+
        ///
        virtual Inset * clone(Buffer const &, bool same_id = false) const;
 
@@ -86,9 +86,12 @@ public:
        /// set the parameters from a Params structure
        virtual void setFromParams(Params const &);
 
-       /// update the file represented by the template
+       ///
        void updateExternal() const;
 
+       /// update the file represented by the template
+       void updateExternal(string const &, Buffer const *) const;
+
        /// edit file of this template
        void editExternal() const;