]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiErrorList.h
Add missing initialization
[lyx.git] / src / frontends / qt4 / GuiErrorList.h
index 2553cdc560b05a2d92f8383315d285c236070647..fe4393d581e4495fdd2ebb87d1a006623c3353d9 100644 (file)
@@ -31,12 +31,16 @@ public:
 public Q_SLOTS:
        /// select an entry
        void select();
+       /// open the LaTeX log
+       void viewLog();
+       /// show the output file despite compilation errors
+       void showAnyway();
 
 private:
        ///
        void showEvent(QShowEvent *);
-       /// update contents
-       void updateContents();
+       ///
+       void paramsToDialog();
        ///
        bool isBufferDependent() const { return true; }
        ///
@@ -45,6 +49,8 @@ private:
        void clearParams() {}
        ///
        void dispatchParams() {}
+       ///
+       bool canApply() const { return true; }
 
        /// goto this error in the parent bv. Returns success.
        bool goTo(int item);
@@ -53,8 +59,14 @@ private:
 private:
        ///
        std::string error_type_;
+       ///
+       mutable ErrorList error_list_;
+       ///
+       Buffer const * buf_;
        /// the parent document name
        docstring name_;
+       ///
+       bool from_master_;
 };
 
 } // namespace frontend