diff --git a/src/GUI.cpp b/src/GUI.cpp index 12d53b3aa..e2d7b2292 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -40,22 +40,22 @@ #include #include "GUI.h" -#include "TransferListWidget.h" +#include "transferlistwidget.h" #include "misc.h" #include "createtorrent_imp.h" -#include "downloadFromURLImp.h" -#include "torrentAddition.h" -#include "searchEngine.h" +#include "downloadfromurldlg.h" +#include "torrentadditiondlg.h" +#include "searchengine.h" #include "rss_imp.h" #include "bittorrent.h" #include "about_imp.h" -#include "trackerLogin.h" +#include "trackerlogin.h" #include "options_imp.h" #include "speedlimitdlg.h" #include "preferences.h" #include "console_imp.h" -#include "torrentPersistentData.h" -#include "TransferListFiltersWidget.h" +#include "torrentpersistentdata.h" +#include "transferlistfilterswidget.h" #include "propertieswidget.h" #include "statusbar.h" diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index a39de9716..482b38dfa 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -37,11 +37,11 @@ #include "filesystemwatcher.h" #include "bittorrent.h" #include "misc.h" -#include "downloadThread.h" -#include "filterParserThread.h" +#include "downloadthread.h" +#include "filterparserthread.h" #include "preferences.h" #include "geoip.h" -#include "torrentPersistentData.h" +#include "torrentpersistentdata.h" #include "httpserver.h" #include #ifdef LIBTORRENT_0_15 diff --git a/src/downloadFromURLImp.h b/src/downloadfromurldlg.h similarity index 100% rename from src/downloadFromURLImp.h rename to src/downloadfromurldlg.h diff --git a/src/downloadThread.cpp b/src/downloadthread.cpp similarity index 99% rename from src/downloadThread.cpp rename to src/downloadthread.cpp index af81ebe4a..4c693843d 100644 --- a/src/downloadThread.cpp +++ b/src/downloadthread.cpp @@ -28,7 +28,7 @@ * Contact : chris@qbittorrent.org */ -#include "downloadThread.h" +#include "downloadthread.h" #include #include #include diff --git a/src/downloadThread.h b/src/downloadthread.h similarity index 100% rename from src/downloadThread.h rename to src/downloadthread.h diff --git a/src/engineSelectDlg.cpp b/src/engineselectdlg.cpp similarity index 99% rename from src/engineSelectDlg.cpp rename to src/engineselectdlg.cpp index b07fae61c..803a91b0b 100644 --- a/src/engineSelectDlg.cpp +++ b/src/engineselectdlg.cpp @@ -28,8 +28,8 @@ * Contact : chris@qbittorrent.org */ -#include "engineSelectDlg.h" -#include "downloadThread.h" +#include "engineselectdlg.h" +#include "downloadthread.h" #include "misc.h" #include "ico.h" #include "pluginSource.h" diff --git a/src/engineSelectDlg.h b/src/engineselectdlg.h similarity index 99% rename from src/engineSelectDlg.h rename to src/engineselectdlg.h index c15cc6f19..d5c19cc1c 100644 --- a/src/engineSelectDlg.h +++ b/src/engineselectdlg.h @@ -32,7 +32,7 @@ #define ENGINE_SELECT_DLG_H #include "ui_engineSelect.h" -#include "supportedEngines.h" +#include "supportedengines.h" class downloadThread; class QDropEvent; diff --git a/src/FeedDownloader.h b/src/feeddownloader.h similarity index 100% rename from src/FeedDownloader.h rename to src/feeddownloader.h diff --git a/src/filterParserThread.h b/src/filterparserthread.h similarity index 100% rename from src/filterParserThread.h rename to src/filterparserthread.h diff --git a/src/PreviewListDelegate.h b/src/previewlistdelegate.h similarity index 100% rename from src/PreviewListDelegate.h rename to src/previewlistdelegate.h diff --git a/src/previewSelect.h b/src/previewselect.h similarity index 99% rename from src/previewSelect.h rename to src/previewselect.h index 9c3ffed08..0dc8f6fff 100644 --- a/src/previewSelect.h +++ b/src/previewselect.h @@ -37,7 +37,7 @@ #include #include #include "ui_preview.h" -#include "PreviewListDelegate.h" +#include "previewlistdelegate.h" #include "misc.h" #include "qtorrenthandle.h" diff --git a/src/propertieswidget.cpp b/src/propertieswidget.cpp index e5e5e287b..019bb8996 100644 --- a/src/propertieswidget.cpp +++ b/src/propertieswidget.cpp @@ -39,13 +39,13 @@ #include #include #include "propertieswidget.h" -#include "TransferListWidget.h" -#include "torrentPersistentData.h" +#include "transferlistwidget.h" +#include "torrentpersistentdata.h" #include "realprogressbar.h" #include "realprogressbarthread.h" #include "bittorrent.h" -#include "PropListDelegate.h" -#include "TorrentFilesModel.h" +#include "proplistdelegate.h" +#include "torrentfilesmodel.h" #include "peerlistwidget.h" #include "trackerlist.h" diff --git a/src/PropListDelegate.h b/src/proplistdelegate.h similarity index 100% rename from src/PropListDelegate.h rename to src/proplistdelegate.h diff --git a/src/rss.h b/src/rss.h index 199503645..b12c3a1fc 100644 --- a/src/rss.h +++ b/src/rss.h @@ -44,9 +44,9 @@ #include #include "misc.h" -#include "FeedDownloader.h" +#include "feeddownloader.h" #include "bittorrent.h" -#include "downloadThread.h" +#include "downloadthread.h" class RssManager; class RssFile; // Folder or Stream diff --git a/src/rss_imp.cpp b/src/rss_imp.cpp index 1bbf0058f..8bd2c0c66 100644 --- a/src/rss_imp.cpp +++ b/src/rss_imp.cpp @@ -38,7 +38,7 @@ #include #include "rss_imp.h" -#include "FeedDownloader.h" +#include "feeddownloader.h" #include "feedList.h" #include "bittorrent.h" diff --git a/src/searchEngine.cpp b/src/searchengine.cpp similarity index 99% rename from src/searchEngine.cpp rename to src/searchengine.cpp index 62b672f53..152f2184f 100644 --- a/src/searchEngine.cpp +++ b/src/searchengine.cpp @@ -44,11 +44,11 @@ #include #include -#include "searchEngine.h" +#include "searchengine.h" #include "bittorrent.h" -#include "downloadThread.h" +#include "downloadthread.h" #include "misc.h" -#include "SearchListDelegate.h" +#include "searchlistdelegate.h" #define SEARCHHISTORY_MAXSIZE 50 diff --git a/src/searchEngine.h b/src/searchengine.h similarity index 97% rename from src/searchEngine.h rename to src/searchengine.h index c9d3af8e9..01c050007 100644 --- a/src/searchEngine.h +++ b/src/searchengine.h @@ -39,9 +39,9 @@ #include #include #include "ui_search.h" -#include "engineSelectDlg.h" -#include "SearchTab.h" -#include "supportedEngines.h" +#include "engineselectdlg.h" +#include "searchtab.h" +#include "supportedengines.h" class bittorrent; class QSystemTrayIcon; diff --git a/src/SearchListDelegate.h b/src/searchlistdelegate.h similarity index 100% rename from src/SearchListDelegate.h rename to src/searchlistdelegate.h diff --git a/src/SearchTab.cpp b/src/searchtab.cpp similarity index 98% rename from src/SearchTab.cpp rename to src/searchtab.cpp index 5d0177c9d..f76665bd9 100644 --- a/src/SearchTab.cpp +++ b/src/searchtab.cpp @@ -35,10 +35,10 @@ #include #include -#include "SearchTab.h" -#include "SearchListDelegate.h" +#include "searchtab.h" +#include "searchlistdelegate.h" #include "misc.h" -#include "searchEngine.h" +#include "searchengine.h" #define SEARCH_NAME 0 #define SEARCH_SIZE 1 diff --git a/src/SearchTab.h b/src/searchtab.h similarity index 100% rename from src/SearchTab.h rename to src/searchtab.h diff --git a/src/src.pro b/src/src.pro index d9ec49931..d76d858fe 100644 --- a/src/src.pro +++ b/src/src.pro @@ -14,7 +14,7 @@ CONFIG += qt \ network # Update this VERSION for each release -DEFINES += VERSION=\\\"v2.0.0beta3\\\" +DEFINES += VERSION=\\\"v2.0.0beta4\\\" DEFINES += VERSION_MAJOR=2 DEFINES += VERSION_MINOR=0 DEFINES += VERSION_BUGFIX=0 @@ -146,21 +146,21 @@ HEADERS += GUI.h \ options_imp.h \ about_imp.h \ createtorrent_imp.h \ - SearchListDelegate.h \ - PropListDelegate.h \ - previewSelect.h \ - PreviewListDelegate.h \ - trackerLogin.h \ - downloadThread.h \ - downloadFromURLImp.h \ - torrentAddition.h \ + searchlistdelegate.h \ + proplistdelegate.h \ + previewselect.h \ + previewlistdelegate.h \ + trackerlogin.h \ + downloadthread.h \ + downloadfromurldlg.h \ + torrentadditiondlg.h \ bittorrent.h \ searchEngine.h \ rss.h \ rss_imp.h \ speedlimitdlg.h \ qtorrenthandle.h \ - engineSelectDlg.h \ + engineselectdlg.h \ pluginSource.h \ qgnomelook.h \ realprogressbar.h \ @@ -172,21 +172,21 @@ HEADERS += GUI.h \ httpresponsegenerator.h \ json.h \ eventmanager.h \ - filterParserThread.h \ + filterparserthread.h \ trackersadditiondlg.h \ - searchTab.h \ + searchtab.h \ console_imp.h \ ico.h \ stacktrace.h \ - torrentPersistentData.h \ - FeedDownloader.h \ + torrentpersistentdata.h \ + feeddownloader.h \ feedList.h \ - supportedEngines.h \ - TransferListWidget.h \ - TransferListDelegate.h \ - TransferListFiltersWidget.h \ + supportedengines.h \ + transferlistwidget.h \ + transferlistdelegate.h \ + transferlistfilterswidget.h \ propertieswidget.h \ - TorrentFilesModel.h \ + torrentfilesmodel.h \ filesystemwatcher.h \ peerlistwidget.h \ peerlistdelegate.h \ @@ -221,11 +221,11 @@ SOURCES += GUI.cpp \ options_imp.cpp \ createtorrent_imp.cpp \ bittorrent.cpp \ - searchEngine.cpp \ + searchengine.cpp \ rss_imp.cpp \ qtorrenthandle.cpp \ - engineSelectDlg.cpp \ - downloadThread.cpp \ + engineselectdlg.cpp \ + downloadthread.cpp \ realprogressbar.cpp \ realprogressbarthread.cpp \ qrealarray.cpp \ @@ -234,10 +234,10 @@ SOURCES += GUI.cpp \ httprequestparser.cpp \ httpresponsegenerator.cpp \ eventmanager.cpp \ - SearchTab.cpp \ + searchtab.cpp \ ico.cpp \ rss.cpp \ - TransferListWidget.cpp \ + transferlistwidget.cpp \ propertieswidget.cpp \ peerlistwidget.cpp DESTDIR = . diff --git a/src/supportedEngines.h b/src/supportedengines.h similarity index 100% rename from src/supportedEngines.h rename to src/supportedengines.h diff --git a/src/torrentAddition.h b/src/torrentadditiondlg.h similarity index 99% rename from src/torrentAddition.h rename to src/torrentadditiondlg.h index 30a1296aa..7ebcfb6d8 100644 --- a/src/torrentAddition.h +++ b/src/torrentadditiondlg.h @@ -44,10 +44,10 @@ #include #include "bittorrent.h" #include "misc.h" -#include "PropListDelegate.h" +#include "proplistdelegate.h" #include "ui_addTorrentDialog.h" -#include "torrentPersistentData.h" -#include "TorrentFilesModel.h" +#include "torrentpersistentdata.h" +#include "torrentfilesmodel.h" using namespace libtorrent; diff --git a/src/TorrentFilesModel.h b/src/torrentfilesmodel.h similarity index 100% rename from src/TorrentFilesModel.h rename to src/torrentfilesmodel.h diff --git a/src/torrentPersistentData.h b/src/torrentpersistentdata.h similarity index 100% rename from src/torrentPersistentData.h rename to src/torrentpersistentdata.h diff --git a/src/trackerLogin.h b/src/trackerlogin.h similarity index 100% rename from src/trackerLogin.h rename to src/trackerlogin.h diff --git a/src/TransferListDelegate.h b/src/transferlistdelegate.h similarity index 100% rename from src/TransferListDelegate.h rename to src/transferlistdelegate.h diff --git a/src/TransferListFiltersWidget.h b/src/transferlistfilterswidget.h similarity index 99% rename from src/TransferListFiltersWidget.h rename to src/transferlistfilterswidget.h index b7ae5490b..787589aed 100644 --- a/src/TransferListFiltersWidget.h +++ b/src/transferlistfilterswidget.h @@ -36,7 +36,7 @@ #include #include -#include "TransferListWidget.h" +#include "transferlistwidget.h" class TransferListFiltersWidget: public QListWidget { Q_OBJECT diff --git a/src/TransferListWidget.cpp b/src/transferlistwidget.cpp similarity index 99% rename from src/TransferListWidget.cpp rename to src/transferlistwidget.cpp index 14ece79af..ca578ca04 100644 --- a/src/TransferListWidget.cpp +++ b/src/transferlistwidget.cpp @@ -28,11 +28,11 @@ * Contact : chris@qbittorrent.org */ -#include "TransferListWidget.h" +#include "transferlistwidget.h" #include "bittorrent.h" -#include "torrentPersistentData.h" -#include "TransferListDelegate.h" -#include "previewSelect.h" +#include "torrentpersistentdata.h" +#include "transferlistdelegate.h" +#include "previewselect.h" #include "speedlimitdlg.h" #include "options_imp.h" #include "deletionconfirmationdlg.h" diff --git a/src/TransferListWidget.h b/src/transferlistwidget.h similarity index 100% rename from src/TransferListWidget.h rename to src/transferlistwidget.h