-#ifdef __WXGTK26__
- if ( !gtk_check_version(2,6,0) )
- {
- image = gtk_button_get_image(GTK_BUTTON(m_widget));
- }
- else
-#endif // __WXGTK26__
- {
- // buttons with both label and bitmap are only supported with GTK+
- // 2.6 so far
- //
- // it shouldn't be difficult to implement them ourselves for the
- // previous GTK+ versions by stuffing a container with a label and
- // an image inside GtkButton but there doesn't seem to be much
- // point in doing this for ancient GTK+ versions
- return;
- }