[GTK] Add cast in call to g_object_add_weak_pointer in MiniBrowser
Created attachment 221021 [details] Patch
Comment on attachment 221021 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=221021&action=review > Tools/MiniBrowser/gtk/BrowserWindow.c:710 > - g_object_add_weak_pointer(G_OBJECT(parent), &window->parentWindow); > + g_object_add_weak_pointer(G_OBJECT(parent), (gpointer*) &window->parentWindow); Add a space between the gpointer and the * and remove the space between the parentheses and the & g_object_add_weak_pointer(G_OBJECT(parent), (gpointer *)&window->parentWindow);
Created attachment 221023 [details] Patch
Comment on attachment 221023 [details] Patch Clearing flags on attachment: 221023 Committed r161875: <http://trac.webkit.org/changeset/161875>
All reviewed patches have been landed. Closing bug.