From e004b56dc96fc0e5b6952c8a00a5fb716971225d Mon Sep 17 00:00:00 2001 From: Silarn Date: Thu, 3 May 2018 22:32:31 -0500 Subject: [PATCH] Fit primarySources to new wrapper method --- src/runner/proxypluginwrappers.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/runner/proxypluginwrappers.cpp b/src/runner/proxypluginwrappers.cpp index 0c0454a..ac2e35d 100644 --- a/src/runner/proxypluginwrappers.cpp +++ b/src/runner/proxypluginwrappers.cpp @@ -210,10 +210,7 @@ QString IPluginGameWrapper::gameShortName() const QStringList IPluginGameWrapper::primarySources() const { - GILock lock; - try { - return this->get_override("primarySources")(); - } PYCATCH; + return basicWrapperFunctionImplementation(this, "primarySources"); } QStringList IPluginGameWrapper::validShortNames() const