remove unused data member

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2009-12-01 16:23:48 +00:00
parent 589d208299
commit 0f52f61085
5 changed files with 5 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ struct WXDLLIMPEXP_CORE wxPizza
enum { BORDER_STYLES =
wxBORDER_SIMPLE | wxBORDER_RAISED | wxBORDER_SUNKEN | wxBORDER_THEME };
static GtkWidget* New(long windowStyle, void *owner);
static GtkWidget* New(long windowStyle = 0);
static GType type();
void move(GtkWidget* widget, int x, int y);
void scroll(int dx, int dy);
@@ -33,7 +33,6 @@ struct WXDLLIMPEXP_CORE wxPizza
int m_scroll_y;
int m_border_style;
bool m_is_scrollable;
void *m_owner;
};
#endif // _WX_GTK_PIZZA_H_