diff options
| author | Johannes Tröscher <fritz_van_tom@hotmail.com> | 2011-11-02 20:37:07 +0100 | 
|---|---|---|
| committer | Johannes Tröscher <fritz_van_tom@hotmail.com> | 2011-11-02 20:37:07 +0100 | 
| commit | 7770488d17790e2dc02cc125eba1eec7d97a0ae0 (patch) | |
| tree | f6cafdd85261efaef0adac22d253084dc972fa29 /src | |
| parent | SVN_SILENT made messages (.desktop file) (diff) | |
| download | rekonq-7770488d17790e2dc02cc125eba1eec7d97a0ae0.tar.xz | |
also take 'application/futuresplash' mimetype in account for clickToFlash
REVIEWED-BY: trustMe
Diffstat (limited to 'src')
| -rw-r--r-- | src/webpluginfactory.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/webpluginfactory.cpp b/src/webpluginfactory.cpp index 8567b212..73291991 100644 --- a/src/webpluginfactory.cpp +++ b/src/webpluginfactory.cpp @@ -63,7 +63,8 @@ QObject *WebPluginFactory::create(const QString &mimeType,          return KWebPluginFactory::create(mimeType, url, argumentNames, argumentValues);      case 1: -        if (mimeType != QString("application/x-shockwave-flash")) +        if (mimeType != QString("application/x-shockwave-flash") +            || mimeType != QString("application/futuresplash"))              break;          if (_loadClickToFlash) | 
