Fix uninitialized variable
[ardour.git] / gtk2_ardour / splash.h
index 536d7f30f16314341b8163078fbce213c986c0aa..109b68a8be2c7507ffb42d9d326eda740a0df0be 100644 (file)
@@ -32,23 +32,24 @@ class ARDOUR_UI;
 
 class Splash : public Gtk::Window
 {
-  public:
+public:
        Splash ();
        ~Splash ();
 
        static Splash* instance() { return the_splash; }
 
-        void display ();
+       void display ();
        void pop_back_for (Gtk::Window&);
        void pop_front ();
 
        bool expose (GdkEventExpose*);
        bool on_button_release_event (GdkEventButton*);
        void on_realize ();
-
+       bool on_map_event (GdkEventAny*);
        void message (const std::string& msg);
+       void hide ();
 
-  private:
+private:
        static Splash* the_splash;
 
        Glib::RefPtr<Gdk::Pixbuf> pixbuf;
@@ -58,8 +59,10 @@ class Splash : public Gtk::Window
        void boot_message (std::string);
        PBD::ScopedConnection msg_connection;
 
-        bool expose_done;
-        bool idle_after_expose ();
+       sigc::connection idle_connection;
+       volatile bool expose_done;
+       bool expose_is_the_one;
+       bool idle_after_expose ();
 };
 
 #endif /* __ardour_gtk_splash_h__ */