From 761684d36210d660315d70c27d366fc2bc9e62cb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 6 Aug 2017 16:06:02 +0200 Subject: Fix implicit cast warnings with clang --- src/gtk2_in_qt5.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gtk2_in_qt5.cpp') diff --git a/src/gtk2_in_qt5.cpp b/src/gtk2_in_qt5.cpp index e97f4a0..75258b0 100644 --- a/src/gtk2_in_qt5.cpp +++ b/src/gtk2_in_qt5.cpp @@ -88,7 +88,7 @@ wrapper_wrap(SuilWrapper* wrapper, gtk_container_add(GTK_CONTAINER(plug), widget); gtk_widget_show_all(plug); - const WId wid = gtk_plug_get_id((GtkPlug *)plug); + const WId wid = (const WId)gtk_plug_get_id((GtkPlug*)plug); QWindow* window = QWindow::fromWinId(wid); QWidget* container = QWidget::createWindowContainer(window, wrap); QVBoxLayout* layout = new QVBoxLayout(); -- cgit v1.2.1