From e61bb221c4f11c37451779e3c0b2f08eda3a9af1 Mon Sep 17 00:00:00 2001 From: Ellen Dekkers Date: Mon, 11 May 2009 12:29:36 +0000 Subject: [PATCH] OF/Core: fixed plugin loader for direct texture update git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@6020 383ad7c9-94d9-4d36-a494-682f7c89f535 --- Core/PluginLoader.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/PluginLoader.cc b/Core/PluginLoader.cc index dbf0f9bf..d2fea88a 100644 --- a/Core/PluginLoader.cc +++ b/Core/PluginLoader.cc @@ -859,16 +859,16 @@ void Core::loadPlugin(QString filename, bool silent){ if ( checkSignal( plugin , "textureChangeImage(QString,QImage&,int)" ) ) - connect(this , SIGNAL(textureChangeImage(QString,QImage&,int)), - plugin , SLOT(slotTextureChangeImage(QString,QImage&,int)),Qt::DirectConnection); + connect(plugin , SIGNAL(textureChangeImage(QString,QImage&,int)), + this , SLOT(slotTextureChangeImage(QString,QImage&,int)),Qt::DirectConnection); if ( checkSlot( plugin , "slotTextureChangeImage(QString,QImage&,int)" ) ) connect(this , SIGNAL(textureChangeImage(QString,QImage&,int)), plugin , SLOT(slotTextureChangeImage(QString,QImage&,int)),Qt::DirectConnection); if ( checkSignal( plugin , "textureChangeImage(QString,QImage&)" ) ) - connect(this , SIGNAL(textureChangeImage(QString,QImage&)), - plugin , SLOT(slotTextureChangeImage(QString,QImage&)),Qt::DirectConnection); + connect(plugin , SIGNAL(textureChangeImage(QString,QImage&)), + this , SLOT(slotTextureChangeImage(QString,QImage&)),Qt::DirectConnection); if ( checkSlot( plugin , "slotTextureChangeImage(QString,QImage&)" ) ) connect(this , SIGNAL(textureChangeImage(QString,QImage&)), -- GitLab