]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gnome/GError.h
gtkmm-2 upgrade. Still some small bugs to iron out, but mostly functional
[lyx.git] / src / frontends / gnome / GError.h
index 383707b88b6c9964ce8b9b282ac5df00f612b323..3c8e0a8783f679b0023453c0c124a3dac2241e3e 100644 (file)
 namespace Gtk {
 
 class Button;
-class Text;
+class TextView;
 
 }
 
 /**
  * This class implements the dialog to show error messages.
  */
-class GError : public FormCB<ControlError> {
+class GErrorDialog : public FormCB<ControlError> {
 public:
        ///
-       GError(ControlError & c);
+       GErrorDialog(ControlError & c);
        ///
-       ~GError() {}
+       ~GErrorDialog() {}
        ///
        void apply() {}
        ///
@@ -56,7 +56,7 @@ private:
        /// generated by accessors.py
        Gtk::Button * button_close() const;
        /// generated by accessors.py
-       Gtk::Text * textarea() const;
+       Gtk::TextView * textarea() const;
 };
 
 #endif