diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-04 15:37:18 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-04 15:37:18 +0100 |
commit | c9813c11a0c8a928d8fac4eb63efd29eec50047d (patch) | |
tree | d46e841c88f75adf0e519975320f48821acaec64 /src/webpluginfactory.cpp | |
parent | delete clicktoflash object just when detection doesn't fail. (diff) | |
download | rekonq-c9813c11a0c8a928d8fac4eb63efd29eec50047d.tar.xz |
Fix Click to Flash.
In my tests it doesn't crash anymore and works ever well :)
(Please, don't wake up me if this is just aa dream..)
Diffstat (limited to 'src/webpluginfactory.cpp')
-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 c8060969..9e4b8ba3 100644 --- a/src/webpluginfactory.cpp +++ b/src/webpluginfactory.cpp @@ -79,7 +79,7 @@ QObject *WebPluginFactory::create(const QString &mimeType, if( _loadClickToFlash ) { emit signalLoadClickToFlash(false); - return KWebPluginFactory::create(mimeType, url, argumentNames, argumentValues); + return 0; //KWebPluginFactory::create(mimeType, url, argumentNames, argumentValues); } else { |