From 14ed11470f4d7162bcdc31b3dfc371413b8b0ad1 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 8 Sep 2015 17:05:59 +0200 Subject: [PATCH] fixed includes --- application/main.cpp | 6 +++-- application/utils.cpp | 2 +- cli/clidownloadinteraction.cpp | 6 ++--- cli/mainfeatures.cpp | 11 ++++---- gui/adddownloaddialog.cpp | 17 ++++++------ gui/addmultipledownloadswizard.cpp | 18 ++++++------- gui/downloadinteraction.cpp | 8 +++--- gui/downloadwidget.cpp | 5 ++-- gui/initiate.cpp | 7 ++--- gui/mainwindow.cpp | 33 ++++++++++++----------- gui/setrangedialog.cpp | 7 ++--- gui/settings.cpp | 6 ++--- gui/settings.h | 6 ++--- itemdelegates/comboboxitemdelegate.cpp | 2 +- itemdelegates/progressbaritemdelegate.cpp | 3 ++- model/downloadfinderresultsmodel.cpp | 6 ++--- model/downloadmodel.cpp | 5 ++-- network/bitsharedownload.cpp | 3 ++- network/bitsharedownload.h | 2 +- network/download.cpp | 12 ++++----- network/download.h | 4 +-- network/downloadrange.cpp | 2 +- network/filenukedownload.cpp | 3 ++- network/filenukedownload.h | 2 +- network/finder/downloadfinder.cpp | 2 +- network/finder/groovesharksearcher.cpp | 2 +- network/finder/groovesharksearcher.h | 2 +- network/finder/linkfinder.cpp | 3 ++- network/finder/linkfinder.h | 2 +- network/finder/youtubeplaylist.cpp | 2 +- network/finder/youtubeplaylist.h | 2 +- network/groovesharkdownload.cpp | 3 ++- network/groovesharkdownload.h | 2 +- network/httpdownload.cpp | 5 ++-- network/httpdownload.h | 2 +- network/httpdownloadwithinforequst.cpp | 4 +-- network/httpdownloadwithinforequst.h | 2 +- network/misc/contentdispositionparser.cpp | 2 +- network/optiondata.cpp | 4 +-- network/optiondata.h | 2 +- network/socksharedownload.cpp | 3 ++- network/socksharedownload.h | 2 +- network/spotifydownload.cpp | 3 ++- network/spotifydownload.h | 2 +- network/testdownload.cpp | 2 +- network/testdownload.h | 2 +- network/youtubedownload.cpp | 3 ++- network/youtubedownload.h | 2 +- 48 files changed, 127 insertions(+), 109 deletions(-) diff --git a/application/main.cpp b/application/main.cpp index 5dd6767..3418cef 100644 --- a/application/main.cpp +++ b/application/main.cpp @@ -1,5 +1,5 @@ -#include "cli/mainfeatures.h" -#include "gui/initiate.h" +#include "../cli/mainfeatures.h" +#include "../gui/initiate.h" #if defined(GUI_QTWIDGETS) || defined(GUI_QTQUICK) # include @@ -8,6 +8,7 @@ #endif #include +#include #include #include @@ -40,6 +41,7 @@ int main(int argc, char *argv[]) try { parser.parseArgs(argc, argv); } catch (Failure &ex) { + CMD_UTILS_START_CONSOLE; cout << "Unable to parse arguments. " << ex.what() << "\nSee --help for available commands." << endl; } // set meta info for application diff --git a/application/utils.cpp b/application/utils.cpp index e7a82b2..93f1d9c 100644 --- a/application/utils.cpp +++ b/application/utils.cpp @@ -1,4 +1,4 @@ -#include "utils.h" +#include "./utils.h" #include #include diff --git a/cli/clidownloadinteraction.cpp b/cli/clidownloadinteraction.cpp index 4d2b9ea..7d65f7f 100644 --- a/cli/clidownloadinteraction.cpp +++ b/cli/clidownloadinteraction.cpp @@ -1,7 +1,7 @@ -#include "clidownloadinteraction.h" +#include "./clidownloadinteraction.h" -#include "network/download.h" -#include "network/permissionstatus.h" +#include "../network/download.h" +#include "../network/permissionstatus.h" #include diff --git a/cli/mainfeatures.cpp b/cli/mainfeatures.cpp index e7c501f..4c554b2 100644 --- a/cli/mainfeatures.cpp +++ b/cli/mainfeatures.cpp @@ -1,9 +1,9 @@ -#include "mainfeatures.h" +#include "./mainfeatures.h" -#include "network/download.h" -#include "network/httpdownload.h" -#include "network/youtubedownload.h" -#include "network/groovesharkdownload.h" +#include "../network/download.h" +#include "../network/httpdownload.h" +#include "../network/youtubedownload.h" +#include "../network/groovesharkdownload.h" #include #include @@ -23,6 +23,7 @@ namespace Cli { void download(int argc, char *argv[], const StringVector ¶meterValues, const Argument &noConfirmArg) { + CMD_UTILS_START_CONSOLE; // init Qt QCoreApplication app(argc, argv); QObject rootObj; diff --git a/gui/adddownloaddialog.cpp b/gui/adddownloaddialog.cpp index 77adbe1..d30b8f5 100644 --- a/gui/adddownloaddialog.cpp +++ b/gui/adddownloaddialog.cpp @@ -1,15 +1,16 @@ -#include "adddownloaddialog.h" -#include "ui_adddownloaddialog.h" +#include "./adddownloaddialog.h" -#include "network/youtubedownload.h" -#include "network/socksharedownload.h" -#include "network/bitsharedownload.h" -#include "network/groovesharkdownload.h" -#include "network/filenukedownload.h" +#include "../network/youtubedownload.h" +#include "../network/socksharedownload.h" +#include "../network/bitsharedownload.h" +#include "../network/groovesharkdownload.h" +#include "../network/filenukedownload.h" #ifdef UNDER_CONSTRUCTION -#include "network/spotifydownload.h" +#include "../network/spotifydownload.h" #endif +#include "gui/ui_adddownloaddialog.h" + #include #include #include diff --git a/gui/addmultipledownloadswizard.cpp b/gui/addmultipledownloadswizard.cpp index 5e45521..3d64b97 100644 --- a/gui/addmultipledownloadswizard.cpp +++ b/gui/addmultipledownloadswizard.cpp @@ -1,14 +1,14 @@ -#include "addmultipledownloadswizard.h" -#include "downloadinteraction.h" -#include "settings.h" +#include "./addmultipledownloadswizard.h" +#include "./downloadinteraction.h" +#include "./settings.h" -#include "network/download.h" -#include "network/finder/downloadfinder.h" -#include "network/finder/linkfinder.h" -#include "network/finder/youtubeplaylist.h" -#include "network/finder/groovesharksearcher.h" +#include "../network/download.h" +#include "../network/finder/downloadfinder.h" +#include "../network/finder/linkfinder.h" +#include "../network/finder/youtubeplaylist.h" +#include "../network/finder/groovesharksearcher.h" -#include "model/downloadfinderresultsmodel.h" +#include "../model/downloadfinderresultsmodel.h" #include diff --git a/gui/downloadinteraction.cpp b/gui/downloadinteraction.cpp index 50f661c..72c4021 100644 --- a/gui/downloadinteraction.cpp +++ b/gui/downloadinteraction.cpp @@ -1,8 +1,8 @@ -#include "downloadinteraction.h" -#include "settings.h" +#include "./downloadinteraction.h" +#include "./settings.h" -#include "network/download.h" -#include "network/permissionstatus.h" +#include "../network/download.h" +#include "../network/permissionstatus.h" #include diff --git a/gui/downloadwidget.cpp b/gui/downloadwidget.cpp index 27e1426..a13dc94 100644 --- a/gui/downloadwidget.cpp +++ b/gui/downloadwidget.cpp @@ -1,5 +1,6 @@ -#include "downloadwidget.h" -#include "ui_downloadwidget.h" +#include "./downloadwidget.h" + +#include "gui/ui_downloadwidget.h" #include #include diff --git a/gui/initiate.cpp b/gui/initiate.cpp index 73facd8..68b4ddc 100644 --- a/gui/initiate.cpp +++ b/gui/initiate.cpp @@ -1,6 +1,6 @@ -#include "initiate.h" -#include "settings.h" -#include "mainwindow.h" +#include "./initiate.h" +#include "./settings.h" +#include "./mainwindow.h" #include #include @@ -32,6 +32,7 @@ int runWidgetsGui(int argc, char *argv[], const QtConfigArguments &qtConfigArgs) QtGui::saveSettings(); return r; #else + CMD_UTILS_START_CONSOLE; cout << "Application has not been build with Qt widgets GUI support." << endl; return 0; #endif diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 0e4a0ff..1b2d555 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -1,24 +1,25 @@ -#include "mainwindow.h" -#include "ui_mainwindow.h" -#include "downloadinteraction.h" -#include "setrangedialog.h" -#include "adddownloaddialog.h" -#include "addmultipledownloadswizard.h" -#include "settings.h" +#include "./mainwindow.h" +#include "./downloadinteraction.h" +#include "./setrangedialog.h" +#include "./adddownloaddialog.h" +#include "./addmultipledownloadswizard.h" +#include "./settings.h" -#include "network/download.h" -#include "network/youtubedownload.h" -#include "network/socksharedownload.h" -#include "network/groovesharkdownload.h" -#include "network/bitsharedownload.h" +#include "../network/download.h" +#include "../network/youtubedownload.h" +#include "../network/socksharedownload.h" +#include "../network/groovesharkdownload.h" +#include "../network/bitsharedownload.h" #ifdef CONFIG_TESTDOWNLOAD -#include "network/testdownload.h" +#include "../network/testdownload.h" #endif -#include "model/downloadmodel.h" +#include "../model/downloadmodel.h" -#include "itemdelegates/progressbaritemdelegate.h" -#include "itemdelegates/comboboxitemdelegate.h" +#include "../itemdelegates/progressbaritemdelegate.h" +#include "../itemdelegates/comboboxitemdelegate.h" + +#include "gui/ui_mainwindow.h" #include #include diff --git a/gui/setrangedialog.cpp b/gui/setrangedialog.cpp index 1f7553b..7faf2e6 100644 --- a/gui/setrangedialog.cpp +++ b/gui/setrangedialog.cpp @@ -1,7 +1,8 @@ -#include "setrangedialog.h" -#include "ui_setrangedialog.h" +#include "./setrangedialog.h" -#include "network/downloadrange.h" +#include "../network/downloadrange.h" + +#include "gui/ui_setrangedialog.h" #include diff --git a/gui/settings.cpp b/gui/settings.cpp index 5fbbc28..223bb3a 100644 --- a/gui/settings.cpp +++ b/gui/settings.cpp @@ -1,7 +1,7 @@ -#include "settings.h" +#include "./settings.h" -#include "network/download.h" -#include "network/groovesharkdownload.h" +#include "../network/download.h" +#include "../network/groovesharkdownload.h" #include #include diff --git a/gui/settings.h b/gui/settings.h index 598f3b3..68d3172 100644 --- a/gui/settings.h +++ b/gui/settings.h @@ -2,9 +2,9 @@ #define SETTINGSDIALOG_H // is not required here when building with GCC 4.9.1 or Clan 3.5 - MinGW 4.9.1 fails without including UI headers here -#include "ui_targetpage.h" -#include "ui_proxypage.h" -#include "ui_useragentpage.h" +#include "gui/ui_targetpage.h" +#include "gui/ui_proxypage.h" +#include "gui/ui_useragentpage.h" #include #include diff --git a/itemdelegates/comboboxitemdelegate.cpp b/itemdelegates/comboboxitemdelegate.cpp index deefc00..824dce5 100644 --- a/itemdelegates/comboboxitemdelegate.cpp +++ b/itemdelegates/comboboxitemdelegate.cpp @@ -1,4 +1,4 @@ -#include "comboboxitemdelegate.h" +#include "./comboboxitemdelegate.h" #include "../model/downloadmodel.h" diff --git a/itemdelegates/progressbaritemdelegate.cpp b/itemdelegates/progressbaritemdelegate.cpp index cb2cf5f..f63e389 100644 --- a/itemdelegates/progressbaritemdelegate.cpp +++ b/itemdelegates/progressbaritemdelegate.cpp @@ -1,6 +1,7 @@ -#include "progressbaritemdelegate.h" +#include "./progressbaritemdelegate.h" #include "../network/download.h" + #include "../model/downloadmodel.h" #include diff --git a/model/downloadfinderresultsmodel.cpp b/model/downloadfinderresultsmodel.cpp index fc4a326..79daa39 100644 --- a/model/downloadfinderresultsmodel.cpp +++ b/model/downloadfinderresultsmodel.cpp @@ -1,7 +1,7 @@ -#include "downloadfinderresultsmodel.h" +#include "./downloadfinderresultsmodel.h" -#include "network/finder/downloadfinder.h" -#include "network/download.h" +#include "../network/finder/downloadfinder.h" +#include "../network/download.h" #include diff --git a/model/downloadmodel.cpp b/model/downloadmodel.cpp index 80f621c..43c2d55 100644 --- a/model/downloadmodel.cpp +++ b/model/downloadmodel.cpp @@ -1,5 +1,6 @@ -#include "downloadmodel.h" -#include "network/download.h" +#include "./downloadmodel.h" + +#include "../network/download.h" #include diff --git a/network/bitsharedownload.cpp b/network/bitsharedownload.cpp index 9bcb83a..37a5e6c 100644 --- a/network/bitsharedownload.cpp +++ b/network/bitsharedownload.cpp @@ -1,4 +1,5 @@ -#include "bitsharedownload.h" +#include "./bitsharedownload.h" + #include "../application/utils.h" #include diff --git a/network/bitsharedownload.h b/network/bitsharedownload.h index 5db24a9..d313d07 100644 --- a/network/bitsharedownload.h +++ b/network/bitsharedownload.h @@ -1,7 +1,7 @@ #ifndef BITSHAREDOWNLOAD_H #define BITSHAREDOWNLOAD_H -#include "httpdownloadwithinforequst.h" +#include "./httpdownloadwithinforequst.h" namespace Network { diff --git a/network/download.cpp b/network/download.cpp index a43081d..b376906 100644 --- a/network/download.cpp +++ b/network/download.cpp @@ -1,10 +1,10 @@ -#include "download.h" -#include "permissionstatus.h" +#include "./download.h" +#include "./permissionstatus.h" // these includes are only needed to provide the Download::fromUrl method -#include "httpdownload.h" -#include "youtubedownload.h" -#include "socksharedownload.h" -#include "bitsharedownload.h" +#include "./httpdownload.h" +#include "./youtubedownload.h" +#include "./socksharedownload.h" +#include "./bitsharedownload.h" #include #include diff --git a/network/download.h b/network/download.h index baf6306..f83cccf 100644 --- a/network/download.h +++ b/network/download.h @@ -1,8 +1,8 @@ #ifndef DOWNLOAD_H #define DOWNLOAD_H -#include "downloadrange.h" -#include "optiondata.h" +#include "./downloadrange.h" +#include "./optiondata.h" #include diff --git a/network/downloadrange.cpp b/network/downloadrange.cpp index 2085e7f..d6f232a 100644 --- a/network/downloadrange.cpp +++ b/network/downloadrange.cpp @@ -1,4 +1,4 @@ -#include "downloadrange.h" +#include "./downloadrange.h" namespace Network { diff --git a/network/filenukedownload.cpp b/network/filenukedownload.cpp index e0942e4..de78551 100644 --- a/network/filenukedownload.cpp +++ b/network/filenukedownload.cpp @@ -1,4 +1,5 @@ -#include "filenukedownload.h" +#include "./filenukedownload.h" + #include "../application/utils.h" #include diff --git a/network/filenukedownload.h b/network/filenukedownload.h index 66d3cc3..798a56e 100644 --- a/network/filenukedownload.h +++ b/network/filenukedownload.h @@ -1,7 +1,7 @@ #ifndef FILENUKE_DOWNLOAD_H #define FILENUKE_DOWNLOAD_H -#include "httpdownloadwithinforequst.h" +#include "./httpdownloadwithinforequst.h" namespace Network { diff --git a/network/finder/downloadfinder.cpp b/network/finder/downloadfinder.cpp index 29e0eea..9057c1b 100644 --- a/network/finder/downloadfinder.cpp +++ b/network/finder/downloadfinder.cpp @@ -1,4 +1,4 @@ -#include "downloadfinder.h" +#include "./downloadfinder.h" #include "../download.h" diff --git a/network/finder/groovesharksearcher.cpp b/network/finder/groovesharksearcher.cpp index e66a36d..2bbcb40 100644 --- a/network/finder/groovesharksearcher.cpp +++ b/network/finder/groovesharksearcher.cpp @@ -1,4 +1,4 @@ -#include "groovesharksearcher.h" +#include "./groovesharksearcher.h" #include "../groovesharkdownload.h" diff --git a/network/finder/groovesharksearcher.h b/network/finder/groovesharksearcher.h index 49a67fd..8cd244d 100644 --- a/network/finder/groovesharksearcher.h +++ b/network/finder/groovesharksearcher.h @@ -1,7 +1,7 @@ #ifndef GROOVESHARKALBUM_H #define GROOVESHARKALBUM_H -#include "downloadfinder.h" +#include "./downloadfinder.h" #include diff --git a/network/finder/linkfinder.cpp b/network/finder/linkfinder.cpp index a67c027..92b582b 100644 --- a/network/finder/linkfinder.cpp +++ b/network/finder/linkfinder.cpp @@ -1,6 +1,7 @@ -#include "linkfinder.h" +#include "./linkfinder.h" #include "../httpdownload.h" + #include "../../application/utils.h" #include diff --git a/network/finder/linkfinder.h b/network/finder/linkfinder.h index 0fdca21..ad716a7 100644 --- a/network/finder/linkfinder.h +++ b/network/finder/linkfinder.h @@ -1,7 +1,7 @@ #ifndef LINKFINDER_H #define LINKFINDER_H -#include "downloadfinder.h" +#include "./downloadfinder.h" #include diff --git a/network/finder/youtubeplaylist.cpp b/network/finder/youtubeplaylist.cpp index 6611838..b568edb 100644 --- a/network/finder/youtubeplaylist.cpp +++ b/network/finder/youtubeplaylist.cpp @@ -1,4 +1,4 @@ -#include "youtubeplaylist.h" +#include "./youtubeplaylist.h" #include "../httpdownload.h" #include "../youtubedownload.h" diff --git a/network/finder/youtubeplaylist.h b/network/finder/youtubeplaylist.h index 220d6f0..279c94f 100644 --- a/network/finder/youtubeplaylist.h +++ b/network/finder/youtubeplaylist.h @@ -1,7 +1,7 @@ #ifndef YOUTUBEPLAYLIST_H #define YOUTUBEPLAYLIST_H -#include "downloadfinder.h" +#include "./downloadfinder.h" namespace Network { diff --git a/network/groovesharkdownload.cpp b/network/groovesharkdownload.cpp index 83abd48..eaf4b90 100644 --- a/network/groovesharkdownload.cpp +++ b/network/groovesharkdownload.cpp @@ -1,4 +1,5 @@ -#include "groovesharkdownload.h" +#include "./groovesharkdownload.h" + #include "../application/utils.h" #include diff --git a/network/groovesharkdownload.h b/network/groovesharkdownload.h index 8dbc847..09330f4 100644 --- a/network/groovesharkdownload.h +++ b/network/groovesharkdownload.h @@ -1,7 +1,7 @@ #ifndef GROOVESHARKDOWNLOAD_H #define GROOVESHARKDOWNLOAD_H -#include "httpdownloadwithinforequst.h" +#include "./httpdownloadwithinforequst.h" namespace Network { diff --git a/network/httpdownload.cpp b/network/httpdownload.cpp index f64e0f8..9512997 100644 --- a/network/httpdownload.cpp +++ b/network/httpdownload.cpp @@ -1,5 +1,6 @@ -#include "httpdownload.h" -#include "misc/contentdispositionparser.h" +#include "./httpdownload.h" + +#include "./misc/contentdispositionparser.h" #include diff --git a/network/httpdownload.h b/network/httpdownload.h index 136313c..132c342 100644 --- a/network/httpdownload.h +++ b/network/httpdownload.h @@ -1,7 +1,7 @@ #ifndef HTTPDOWNLOAD_H #define HTTPDOWNLOAD_H -#include "download.h" +#include "./download.h" #include #include diff --git a/network/httpdownloadwithinforequst.cpp b/network/httpdownloadwithinforequst.cpp index 0c29839..0fc7f46 100644 --- a/network/httpdownloadwithinforequst.cpp +++ b/network/httpdownloadwithinforequst.cpp @@ -1,5 +1,5 @@ -#include "httpdownloadwithinforequst.h" -#include "permissionstatus.h" +#include "./httpdownloadwithinforequst.h" +#include "./permissionstatus.h" namespace Network { diff --git a/network/httpdownloadwithinforequst.h b/network/httpdownloadwithinforequst.h index 3acd993..73caedc 100644 --- a/network/httpdownloadwithinforequst.h +++ b/network/httpdownloadwithinforequst.h @@ -1,7 +1,7 @@ #ifndef HTTPDOWNLOADWITHINFOREQUST_H #define HTTPDOWNLOADWITHINFOREQUST_H -#include "httpdownload.h" +#include "./httpdownload.h" #include #include diff --git a/network/misc/contentdispositionparser.cpp b/network/misc/contentdispositionparser.cpp index 52dcc3e..923331f 100644 --- a/network/misc/contentdispositionparser.cpp +++ b/network/misc/contentdispositionparser.cpp @@ -1,4 +1,4 @@ -#include "contentdispositionparser.h" +#include "./contentdispositionparser.h" namespace Network { diff --git a/network/optiondata.cpp b/network/optiondata.cpp index 5a411f1..8917620 100644 --- a/network/optiondata.cpp +++ b/network/optiondata.cpp @@ -1,5 +1,5 @@ -#include "optiondata.h" -#include "permissionstatus.h" +#include "./optiondata.h" +#include "./permissionstatus.h" #include diff --git a/network/optiondata.h b/network/optiondata.h index f416357..9c5e0cf 100644 --- a/network/optiondata.h +++ b/network/optiondata.h @@ -1,7 +1,7 @@ #ifndef NETWORK_OPTIONDATA_H #define NETWORK_OPTIONDATA_H -#include "authenticationcredentials.h" +#include "./authenticationcredentials.h" #include #include diff --git a/network/socksharedownload.cpp b/network/socksharedownload.cpp index 49c8b73..86a6446 100644 --- a/network/socksharedownload.cpp +++ b/network/socksharedownload.cpp @@ -1,4 +1,5 @@ -#include "socksharedownload.h" +#include "./socksharedownload.h" + #include "../application/utils.h" #include diff --git a/network/socksharedownload.h b/network/socksharedownload.h index b21f94f..db02906 100644 --- a/network/socksharedownload.h +++ b/network/socksharedownload.h @@ -1,7 +1,7 @@ #ifndef SOCKSHAREDOWNLOAD_H #define SOCKSHAREDOWNLOAD_H -#include "httpdownloadwithinforequst.h" +#include "./httpdownloadwithinforequst.h" namespace Network { diff --git a/network/spotifydownload.cpp b/network/spotifydownload.cpp index f552b8e..45a72f2 100644 --- a/network/spotifydownload.cpp +++ b/network/spotifydownload.cpp @@ -1,4 +1,5 @@ -#include "spotifydownload.h" +#include "./spotifydownload.h" + #include "../application/utils.h" #include diff --git a/network/spotifydownload.h b/network/spotifydownload.h index 38b1d47..c2241ac 100644 --- a/network/spotifydownload.h +++ b/network/spotifydownload.h @@ -1,7 +1,7 @@ #ifndef SPOTIFYDOWNLOAD_H #define SPOTIFYDOWNLOAD_H -#include "httpdownloadwithinforequst.h" +#include "./httpdownloadwithinforequst.h" namespace Network { diff --git a/network/testdownload.cpp b/network/testdownload.cpp index a39a1ca..138aa42 100644 --- a/network/testdownload.cpp +++ b/network/testdownload.cpp @@ -1,4 +1,4 @@ -#include "testdownload.h" +#include "./testdownload.h" namespace Network { diff --git a/network/testdownload.h b/network/testdownload.h index b3e4e46..95e255e 100644 --- a/network/testdownload.h +++ b/network/testdownload.h @@ -1,7 +1,7 @@ #ifndef TESTDOWNLOAD_H #define TESTDOWNLOAD_H -#include "download.h" +#include "./download.h" #include diff --git a/network/youtubedownload.cpp b/network/youtubedownload.cpp index be02861..1185f15 100644 --- a/network/youtubedownload.cpp +++ b/network/youtubedownload.cpp @@ -1,4 +1,5 @@ -#include "youtubedownload.h" +#include "./youtubedownload.h" + #include "../application/utils.h" #include diff --git a/network/youtubedownload.h b/network/youtubedownload.h index 89b0b67..bcf35d6 100644 --- a/network/youtubedownload.h +++ b/network/youtubedownload.h @@ -1,7 +1,7 @@ #ifndef YOUTUBEDOWNLOAD_H #define YOUTUBEDOWNLOAD_H -#include "httpdownloadwithinforequst.h" +#include "./httpdownloadwithinforequst.h" #include #include