Remove unused variable.
authorCarl Hetherington <carl@carlh.net>
Thu, 27 Oct 2011 23:07:25 +0000 (23:07 +0000)
committerCarl Hetherington <carl@carlh.net>
Thu, 27 Oct 2011 23:07:25 +0000 (23:07 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10321 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/cairo_widget.cc
gtk2_ardour/cairo_widget.h

index 86c431cc607a1c03f938345a4008bd92bc8314f9..4e68e95aeefcd3c0688019d775bae8b6a1b4426d 100644 (file)
@@ -25,7 +25,6 @@ CairoWidget::CairoWidget ()
        , _height (1)
        , _active_state (CairoWidget::ActiveState (0))
        , _visual_state (CairoWidget::VisualState (0))
-       , _dirty (true)
 {
 
 }
index 65de9b5e3171992f631864aa5058a85de6e09141..742c76583941847b3e1e377085e85082bc2f0930 100644 (file)
@@ -72,7 +72,6 @@ protected:
 
 private:
        GdkPixmap* _pixmap; ///< our pixmap
-       bool _dirty; ///< true if the pixmap requires re-rendering
 };
 
 #endif