mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-25 07:08:11 +00:00
fix warning in gtk app
This commit is contained in:
parent
0fd44a7a54
commit
6a87488991
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