diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-01-21 00:44:26 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-01-21 00:44:26 +0100 |
commit | 094258e7cb1cb06db105c5c8d067e58e4a40d22b (patch) | |
tree | 38fa0c493faef23e610397fe6dc68f893f5f09cb /src/adblock/adblockmanager.h | |
parent | Some leaks fixed in new code (diff) | |
download | rekonq-094258e7cb1cb06db105c5c8d067e58e4a40d22b.tar.xz |
Save memory!
With this commit, we save (at least) 3 bytes for each AdBlockRule defined
(and probably more than 3!).
In my installation I have about 100 rules... :)
Diffstat (limited to 'src/adblock/adblockmanager.h')
-rw-r--r-- | src/adblock/adblockmanager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/adblock/adblockmanager.h b/src/adblock/adblockmanager.h index c07a9492..f01aaca0 100644 --- a/src/adblock/adblockmanager.h +++ b/src/adblock/adblockmanager.h @@ -110,11 +110,11 @@ // Qt Includes #include <QObject> #include <QNetworkReply> +#include <QStringList> // Forward Includes class QNetworkRequest; class WebPage; -class QStringList; // Definitions typedef QList<AdBlockRule> AdBlockRuleList; |