#include "doublebuffer.h"
#include <wx/gtk/win_gtk.h>
Go to the source code of this file.
Functions | |
void | SetDoubleBuffer (wxWindow *pWindow, bool DoubleBuffer) |
|
Definition at line 28 of file doublebuffer.cpp. 00029 { 00030 #ifdef __WXGTK20__ 00031 gtk_widget_set_double_buffered( pWindow->m_wxwindow, DoubleBuffer ); 00032 #endif // __WXGTK20__ 00033 gtk_pizza_set_clear( GTK_PIZZA(pWindow->m_wxwindow), DoubleBuffer ); 00034 }
|