git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38558
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
m_ok = FALSE;
m_cmap = gdk_colormap_get_system();
{
m_ok = FALSE;
m_cmap = gdk_colormap_get_system();
- m_window = GDK_ROOT_PARENT();
+ m_window = gdk_get_default_root_window();
m_context = gdk_pango_context_get();
// Note: The Sun customised version of Pango shipping with Solaris 10
m_context = gdk_pango_context_get();
// Note: The Sun customised version of Pango shipping with Solaris 10
- GdkGC *gc = gdk_gc_new( GDK_ROOT_PARENT() );
+ GdkGC *gc = gdk_gc_new( gdk_get_default_root_window() );
gdk_gc_set_subwindow( gc, GDK_INCLUDE_INFERIORS );
gdk_gc_set_function( gc, GDK_INVERT );
gdk_gc_set_subwindow( gc, GDK_INCLUDE_INFERIORS );
gdk_gc_set_function( gc, GDK_INVERT );
- gdk_draw_rectangle( GDK_ROOT_PARENT(), gc, FALSE, x, y, w, h );
+ gdk_draw_rectangle( gdk_get_default_root_window(), gc, FALSE, x, y, w, h );
g_object_unref (G_OBJECT (gc));
}
g_object_unref (G_OBJECT (gc));
}
- window = GDK_ROOT_PARENT();
+ window = gdk_get_default_root_window();
if (!GDK_WINDOW_DESTROYED(window))
{
if (!GDK_WINDOW_DESTROYED(window))
{
bool wxWinModule::OnInit()
{
bool wxWinModule::OnInit()
{
- // g_eraseGC = gdk_gc_new( GDK_ROOT_PARENT() );
+ // g_eraseGC = gdk_gc_new( gdk_get_default_root_window() );
// gdk_gc_set_fill( g_eraseGC, GDK_SOLID );
return true;
// gdk_gc_set_fill( g_eraseGC, GDK_SOLID );
return true;