projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Don't close arcs drawn in wxPostScriptDC.
[wxWidgets.git]
/
src
/
gtk
/
choice.cpp
diff --git
a/src/gtk/choice.cpp
b/src/gtk/choice.cpp
index 462d9266ef65fa5edf943d13e0bc533299f8ece1..d9fc4408c7f292f6e709a0f4f49465532a3b23ce 100644
(file)
--- a/
src/gtk/choice.cpp
+++ b/
src/gtk/choice.cpp
@@
-38,8
+38,6
@@
gtk_choice_changed_callback( GtkWidget *WXUNUSED(widget), wxChoice *choice )
// wxChoice
//-----------------------------------------------------------------------------
// wxChoice
//-----------------------------------------------------------------------------
-IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControlWithItems)
-
void wxChoice::Init()
{
m_strings = NULL;
void wxChoice::Init()
{
m_strings = NULL;
@@
-336,7
+334,7
@@
void wxChoice::GTKEnableEvents()
GdkWindow *wxChoice::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
{
GdkWindow *wxChoice::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
{
- return
m_widget->window
;
+ return
gtk_widget_get_window(m_widget)
;
}
// Notice that this method shouldn't be necessary, because GTK calculates
}
// Notice that this method shouldn't be necessary, because GTK calculates
@@
-373,7
+371,7
@@
wxSize wxChoice::DoGetBestSize() const
void wxChoice::DoApplyWidgetStyle(GtkRcStyle *style)
{
gtk_widget_modify_style(m_widget, style);
void wxChoice::DoApplyWidgetStyle(GtkRcStyle *style)
{
gtk_widget_modify_style(m_widget, style);
- gtk_widget_modify_style(
GTK_BIN(m_widget)->child
, style);
+ gtk_widget_modify_style(
gtk_bin_get_child(GTK_BIN(m_widget))
, style);
}
}