From 3b56c5c9e89f00df8ca616ec560eced3d5fa2dcd Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Tue, 25 Aug 2015 12:39:34 +0200 Subject: [PATCH] Use safe QTimer::singleShot connection. --- src/libcalamaresui/modulesystem/ModuleManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcalamaresui/modulesystem/ModuleManager.cpp b/src/libcalamaresui/modulesystem/ModuleManager.cpp index 29a22f979..d49987a60 100644 --- a/src/libcalamaresui/modulesystem/ModuleManager.cpp +++ b/src/libcalamaresui/modulesystem/ModuleManager.cpp @@ -64,7 +64,7 @@ ModuleManager::~ModuleManager() void ModuleManager::init() { - QTimer::singleShot( 0, this, SLOT( doInit() ) ); + QTimer::singleShot( 0, this, &ModuleManager::doInit ); }