diff options
author | matgic78 <matgic78@gmail.com> | 2009-11-22 14:53:33 +0100 |
---|---|---|
committer | matgic78 <matgic78@gmail.com> | 2009-11-27 16:11:57 +0100 |
commit | 19d7611101253c27a841480fca55f1bc5cd767b6 (patch) | |
tree | 0ae960f684382824291b474afa3e2c0bfb8d55ee /src/webpluginfactory.cpp | |
parent | ClickToFlash : first step (diff) | |
download | rekonq-19d7611101253c27a841480fca55f1bc5cd767b6.tar.xz |
clicktoflash : step 2 make it work when there are more than one plugin in the same page
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 2c8ed181..1478339b 100644 --- a/src/webpluginfactory.cpp +++ b/src/webpluginfactory.cpp @@ -88,7 +88,7 @@ QObject *WebPluginFactory::create(const QString &mimeType, if(mimeType == QString("application/x-shockwave-flash") && !loadClickToFlash) // the button wasn't clicked { - ClickToFlash* ctf = new ClickToFlash(this); + ClickToFlash* ctf = new ClickToFlash(this, url); connect(ctf, SIGNAL(signalLoadClickToFlash(bool)), this, SLOT(setLoadClickToFlash(bool))); return ctf; } |