mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 18:56:34 +01:00
Moved scheme handlers into own directory network/schemehandlers
This commit is contained in:
parent
3cb147743e
commit
8d2391da6f
@ -119,7 +119,6 @@ SOURCES += \
|
|||||||
navigation/navigationbar.cpp \
|
navigation/navigationbar.cpp \
|
||||||
navigation/reloadstopbutton.cpp \
|
navigation/reloadstopbutton.cpp \
|
||||||
preferences/thememanager.cpp \
|
preferences/thememanager.cpp \
|
||||||
network/qupzillaschemehandler.cpp \
|
|
||||||
tools/globalfunctions.cpp \
|
tools/globalfunctions.cpp \
|
||||||
other/pagescreen.cpp \
|
other/pagescreen.cpp \
|
||||||
downloads/downloadfilehelper.cpp \
|
downloads/downloadfilehelper.cpp \
|
||||||
@ -177,7 +176,6 @@ SOURCES += \
|
|||||||
other/iconchooser.cpp \
|
other/iconchooser.cpp \
|
||||||
adblock/adblocktreewidget.cpp \
|
adblock/adblocktreewidget.cpp \
|
||||||
adblock/adblockaddsubscriptiondialog.cpp \
|
adblock/adblockaddsubscriptiondialog.cpp \
|
||||||
adblock/adblockschemehandler.cpp \
|
|
||||||
tools/emptynetworkreply.cpp \
|
tools/emptynetworkreply.cpp \
|
||||||
3rdparty/processinfo.cpp \
|
3rdparty/processinfo.cpp \
|
||||||
preferences/pluginsmanager.cpp \
|
preferences/pluginsmanager.cpp \
|
||||||
@ -185,7 +183,9 @@ SOURCES += \
|
|||||||
other/useragentmanager.cpp \
|
other/useragentmanager.cpp \
|
||||||
preferences/useragentdialog.cpp \
|
preferences/useragentdialog.cpp \
|
||||||
session/recoverywidget.cpp \
|
session/recoverywidget.cpp \
|
||||||
session/restoremanager.cpp
|
session/restoremanager.cpp \
|
||||||
|
network/schemehandlers/qupzillaschemehandler.cpp \
|
||||||
|
network/schemehandlers/adblockschemehandler.cpp \
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
webview/tabpreview.h \
|
webview/tabpreview.h \
|
||||||
@ -271,7 +271,6 @@ HEADERS += \
|
|||||||
navigation/navigationbar.h \
|
navigation/navigationbar.h \
|
||||||
navigation/reloadstopbutton.h \
|
navigation/reloadstopbutton.h \
|
||||||
preferences/thememanager.h \
|
preferences/thememanager.h \
|
||||||
network/qupzillaschemehandler.h \
|
|
||||||
tools/globalfunctions.h \
|
tools/globalfunctions.h \
|
||||||
other/pagescreen.h \
|
other/pagescreen.h \
|
||||||
downloads/downloadfilehelper.h \
|
downloads/downloadfilehelper.h \
|
||||||
@ -317,7 +316,6 @@ HEADERS += \
|
|||||||
other/licenseviewer.h \
|
other/licenseviewer.h \
|
||||||
bookmarksimport/bookmarksimporticonfetcher.h \
|
bookmarksimport/bookmarksimporticonfetcher.h \
|
||||||
other/checkboxdialog.h \
|
other/checkboxdialog.h \
|
||||||
network/schemehandler.h \
|
|
||||||
tools/plaineditwithlines.h \
|
tools/plaineditwithlines.h \
|
||||||
sidebar/sidebarinterface.h \
|
sidebar/sidebarinterface.h \
|
||||||
tools/focusselectlineedit.h \
|
tools/focusselectlineedit.h \
|
||||||
@ -333,7 +331,6 @@ HEADERS += \
|
|||||||
other/iconchooser.h \
|
other/iconchooser.h \
|
||||||
adblock/adblocktreewidget.h \
|
adblock/adblocktreewidget.h \
|
||||||
adblock/adblockaddsubscriptiondialog.h \
|
adblock/adblockaddsubscriptiondialog.h \
|
||||||
adblock/adblockschemehandler.h \
|
|
||||||
tools/emptynetworkreply.h \
|
tools/emptynetworkreply.h \
|
||||||
3rdparty/processinfo.h \
|
3rdparty/processinfo.h \
|
||||||
preferences/pluginsmanager.h \
|
preferences/pluginsmanager.h \
|
||||||
@ -341,7 +338,10 @@ HEADERS += \
|
|||||||
other/useragentmanager.h \
|
other/useragentmanager.h \
|
||||||
preferences/useragentdialog.h \
|
preferences/useragentdialog.h \
|
||||||
session/recoverywidget.h \
|
session/recoverywidget.h \
|
||||||
session/restoremanager.h
|
session/restoremanager.h \
|
||||||
|
network/schemehandlers/schemehandler.h \
|
||||||
|
network/schemehandlers/qupzillaschemehandler.h \
|
||||||
|
network/schemehandlers/adblockschemehandler.h \
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
preferences/autofillmanager.ui \
|
preferences/autofillmanager.ui \
|
||||||
|
@ -23,14 +23,14 @@
|
|||||||
#include "webpage.h"
|
#include "webpage.h"
|
||||||
#include "pluginproxy.h"
|
#include "pluginproxy.h"
|
||||||
#include "adblockmanager.h"
|
#include "adblockmanager.h"
|
||||||
#include "adblockschemehandler.h"
|
|
||||||
#include "networkproxyfactory.h"
|
#include "networkproxyfactory.h"
|
||||||
#include "qupzillaschemehandler.h"
|
|
||||||
#include "certificateinfowidget.h"
|
#include "certificateinfowidget.h"
|
||||||
#include "globalfunctions.h"
|
#include "globalfunctions.h"
|
||||||
#include "acceptlanguage.h"
|
#include "acceptlanguage.h"
|
||||||
#include "cabundleupdater.h"
|
#include "cabundleupdater.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
#include "schemehandlers/adblockschemehandler.h"
|
||||||
|
#include "schemehandlers/qupzillaschemehandler.h"
|
||||||
|
|
||||||
#include <QFormLayout>
|
#include <QFormLayout>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
|
Loading…
Reference in New Issue
Block a user