summaryrefslogtreecommitdiff
path: root/src/filterurljob.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filterurljob.h')
-rw-r--r--src/filterurljob.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/filterurljob.h b/src/filterurljob.h
index 3a9511ea..6ab10695 100644
--- a/src/filterurljob.h
+++ b/src/filterurljob.h
@@ -10,9 +10,9 @@
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
-* by the membership of KDE e.V.), which shall act as a proxy
+* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
-*
+*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@@ -27,6 +27,9 @@
#ifndef FILTER_URL_JOB_H
#define FILTER_URL_JOB_H
+// Rekonq Includes
+#include "rekonq_defines.h"
+
// Local Includes
#include "webview.h"
@@ -41,17 +44,17 @@
using namespace ThreadWeaver;
-class FilterUrlJob : public Job
+class REKONQ_TESTS_EXPORT FilterUrlJob : public Job
{
public:
FilterUrlJob(WebView *view, const QString &urlString, QObject *parent = 0);
WebView *view();
KUrl url();
-
+
protected:
void run();
-
+
private:
WebView *_view;
QString _urlString;