~ubuntu-branches/ubuntu/dapper/rdesktop/dapper

« back to all changes in this revision

Viewing changes to xwin.c

  • Committer: Bazaar Package Importer
  • Author(s): Riku Voipio
  • Date: 2004-11-06 10:09:21 UTC
  • Revision ID: james.westby@ubuntu.com-20041106100921-b9l3kjr00f5li2s0
Tags: 1.3.1-1.1
NMU: apply XEmbed patch, Closes: #268896

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
static int g_x_socket;
42
42
static Screen *g_screen;
43
43
Window g_wnd;
 
44
Window g_embed_wnd;
44
45
BOOL g_enable_compose = False;
45
46
static GC g_gc;
46
47
static BOOL g_gc_initialized = False;
929
930
                XFree(sizehints);
930
931
        }
931
932
 
 
933
        if ( g_embed_wnd )
 
934
        {
 
935
                XReparentWindow(g_display, g_wnd, g_embed_wnd, 0, 0);
 
936
        }
 
937
 
932
938
        input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
933
939
                VisibilityChangeMask | FocusChangeMask;
934
940