diff options
author | matgic78 <matgic78@gmail.com> | 2009-11-25 15:20:29 +0100 |
---|---|---|
committer | matgic78 <matgic78@gmail.com> | 2009-11-27 16:11:58 +0100 |
commit | 07270fd5b8331cc33a98ff43fbbc72d87a4431a1 (patch) | |
tree | 88dd51ddb1b2cc9f84b7766f981c5901e34c4b73 /src/clicktoflash.h | |
parent | make clicktoflash optionnal (diff) | |
download | rekonq-07270fd5b8331cc33a98ff43fbbc72d87a4431a1.tar.xz |
clicktoflash : cleanup
Diffstat (limited to 'src/clicktoflash.h')
-rw-r--r-- | src/clicktoflash.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/clicktoflash.h b/src/clicktoflash.h index 3660a1f9..35c661d4 100644 --- a/src/clicktoflash.h +++ b/src/clicktoflash.h @@ -39,23 +39,18 @@ class ClickToFlash : public QWidget { Q_OBJECT public: - /** - pluginUrl : used to find the right QWebElement between the ones of the different plugins - */ - ClickToFlash(const WebPluginFactory *factory, QUrl pluginUrl, QWidget *parent = 0); + ClickToFlash(QUrl pluginUrl, QWidget *parent = 0); signals: void signalLoadClickToFlash(bool); private slots: - /*void configure(); - void addToWhitelist(); - void removeFromWhitelist(); - void showContextMenu(); - void loadAll();*/ - void load(bool loadAll = false); + void load(); private: + /** + used to find the right QWebElement between the ones of the different plugins + */ const QUrl m_url; }; |