diff options
author | Benjamin Otte <otte@redhat.com> | 2011-01-28 15:16:27 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-01-28 17:06:07 +0100 |
commit | 1b18916a7472766d46f799d63ff52ff3c4e94165 (patch) | |
tree | b9c6a32bee15b29da9008cf802204bbf459b3202 /gtk/gtkprintoperation-win32.c | |
parent | 63aa56bcc42cc8876d8f5442aef12ba5d43c0224 (diff) | |
download | gtk+-1b18916a7472766d46f799d63ff52ff3c4e94165.tar.gz |
win32: Make GtkWin32EmbedWidget use HWND instead of GdkNativeWindow
Diffstat (limited to 'gtk/gtkprintoperation-win32.c')
-rw-r--r-- | gtk/gtkprintoperation-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation-win32.c b/gtk/gtkprintoperation-win32.c index 29550b7a8e..008e7bd0ba 100644 --- a/gtk/gtkprintoperation-win32.c +++ b/gtk/gtkprintoperation-win32.c @@ -1360,7 +1360,7 @@ pageDlgProc (HWND wnd, UINT message, WPARAM wparam, LPARAM lparam) SetWindowLongPtrW (wnd, GWLP_USERDATA, (LONG_PTR)op); - plug = _gtk_win32_embed_widget_new ((GdkNativeWindow) wnd); + plug = _gtk_win32_embed_widget_new (wnd); gtk_window_set_modal (GTK_WINDOW (plug), TRUE); op_win32->embed_widget = plug; gtk_container_add (GTK_CONTAINER (plug), op->priv->custom_widget); |