mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
fix warning in gtk app
This commit is contained in:
parent
14bd5aa252
commit
9c72c72415
1 changed files with 2 additions and 2 deletions
|
|
@ -568,7 +568,7 @@ static gboolean linphone_gtk_iterate(LinphoneCore *lc){
|
|||
if (id!=0){
|
||||
ms_message("Updating window decorations");
|
||||
#ifndef WIN32
|
||||
w=gdk_window_foreign_new(id);
|
||||
w=gdk_window_foreign_new((GdkNativeWindow)id);
|
||||
#else
|
||||
w=gdk_window_foreign_new((HANDLE)id);
|
||||
#endif
|
||||
|
|
@ -587,7 +587,7 @@ static gboolean linphone_gtk_iterate(LinphoneCore *lc){
|
|||
if (id!=0){
|
||||
ms_message("Updating window decorations for preview");
|
||||
#ifndef WIN32
|
||||
w=gdk_window_foreign_new(id);
|
||||
w=gdk_window_foreign_new((GdkNativeWindow)id);
|
||||
#else
|
||||
w=gdk_window_foreign_new((HANDLE)id);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue