From c93aa3810d0f5bda61e736b900c3477f8d704782 Mon Sep 17 00:00:00 2001 From: Neel Patel Date: Tue, 11 Jul 2017 09:14:53 +0100 Subject: [PATCH] Fix a compiler error with older compilers. --- runtime/TabWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/TabWindow.cpp b/runtime/TabWindow.cpp index 7924ff884..5eb8cb9d8 100644 --- a/runtime/TabWindow.cpp +++ b/runtime/TabWindow.cpp @@ -76,7 +76,7 @@ DockTabWidget::DockTabWidget(QWidget *parent) : } DockTabWidget::DockTabWidget(DockTabWidget *other, QWidget *parent) : - DockTabWidget(parent) + QTabWidget(parent) { setFloatingBaseWidget(other->floatingBaseWidget()); setFloatingEnabled(other->isFloatingEnabled());