diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-09-16 17:06:42 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-09-16 17:06:42 +0200 |
commit | acbc9cd4d9dcdd9da837800f621922747c516415 (patch) | |
tree | cc8d14b3ececbcac76d2dd7dd2aac24b68a13b72 | |
parent | Get sure mainWindow() exists before trying applying settings (diff) | |
download | rekonq-acbc9cd4d9dcdd9da837800f621922747c516415.tar.xz |
Improve code in plugin loading (not yet perfect, I fear...)
CCBUG: 281101
-rw-r--r-- | src/webpluginfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpluginfactory.cpp b/src/webpluginfactory.cpp index d4a1bfe1..8567b212 100644 --- a/src/webpluginfactory.cpp +++ b/src/webpluginfactory.cpp @@ -69,7 +69,7 @@ QObject *WebPluginFactory::create(const QString &mimeType, if (_loadClickToFlash) { emit signalLoadClickToFlash(false); - return 0; //KWebPluginFactory::create(mimeType, url, argumentNames, argumentValues); + return KWebPluginFactory::create(mimeType, url, argumentNames, argumentValues); } else { |