mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-11 16:44:05 +02:00
First batch of CamelCasing
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
#include "accounts/AccountManager.h"
|
||||
#include "guihelpers.h"
|
||||
#include "AccountFactoryWrapperDelegate.h"
|
||||
#include "delegateconfigwrapper.h"
|
||||
#include "DelegateConfigWrapper.h"
|
||||
#include "ui_AccountFactoryWrapper.h"
|
||||
|
||||
using namespace Tomahawk::Accounts;
|
||||
|
@@ -17,8 +17,8 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "audiocontrols.h"
|
||||
#include "ui_audiocontrols.h"
|
||||
#include "AudioControls.h"
|
||||
#include "ui_AudioControls.h"
|
||||
|
||||
#include <QtNetwork/QNetworkReply>
|
||||
#include <QtGui/QDropEvent>
|
@@ -39,17 +39,17 @@ ENDIF()
|
||||
SET( tomahawkSources ${tomahawkSources}
|
||||
web/api_v1.cpp
|
||||
|
||||
musicscanner.cpp
|
||||
shortcuthandler.cpp
|
||||
scanmanager.cpp
|
||||
ubuntuunityhack.cpp
|
||||
tomahawkapp.cpp
|
||||
MusicScanner.cpp
|
||||
ShortcutHandler.cpp
|
||||
ScanManager.cpp
|
||||
UbuntuUnityHack.cpp
|
||||
TomahawkApp.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
IF(LIBLASTFM_FOUND)
|
||||
SET(tomahawkSources ${tomahawkSources}
|
||||
scrobbler.cpp
|
||||
Scrobbler.cpp
|
||||
)
|
||||
ENDIF(LIBLASTFM_FOUND)
|
||||
|
||||
@@ -78,14 +78,14 @@ SET( tomahawkSourcesGui ${tomahawkSourcesGui}
|
||||
accounts/spotify/SpotifyAccountConfig.cpp
|
||||
accounts/spotify/SpotifyPlaylistUpdater.cpp
|
||||
|
||||
tomahawktrayicon.cpp
|
||||
audiocontrols.cpp
|
||||
settingsdialog.cpp
|
||||
diagnosticsdialog.cpp
|
||||
TomahawkTrayIcon.cpp
|
||||
AudioControls.cpp
|
||||
SettingsDialog.cpp
|
||||
DiagnosticsDialog.cpp
|
||||
AccountDelegate.cpp
|
||||
settingslistdelegate.cpp
|
||||
delegateconfigwrapper.cpp
|
||||
tomahawkwindow.cpp
|
||||
SettingsListDelegate.cpp
|
||||
DelegateConfigWrapper.cpp
|
||||
TomahawkWindow.cpp
|
||||
LoadXSPFDialog.cpp
|
||||
AccountFactoryWrapper.cpp
|
||||
AccountFactoryWrapperDelegate.cpp
|
||||
@@ -97,15 +97,15 @@ IF( WITH_BREAKPAD )
|
||||
ENDIF()
|
||||
|
||||
SET( tomahawkUI ${tomahawkUI}
|
||||
tomahawkwindow.ui
|
||||
diagnosticsdialog.ui
|
||||
stackedsettingsdialog.ui
|
||||
proxydialog.ui
|
||||
TomahawkWindow.ui
|
||||
DiagnosticsDialog.ui
|
||||
StackedSettingsDialog.ui
|
||||
ProxyDialog.ui
|
||||
|
||||
accounts/lastfm/LastFmConfig.ui
|
||||
accounts/spotify/SpotifyAccountConfig.ui
|
||||
|
||||
audiocontrols.ui
|
||||
AudioControls.ui
|
||||
LoadXSPFDialog.ui
|
||||
AccountFactoryWrapper.ui
|
||||
SocialWidget.ui
|
||||
@@ -166,7 +166,7 @@ IF(QCA2_FOUND)
|
||||
ENDIF(QCA2_FOUND)
|
||||
|
||||
INCLUDE(GNUInstallDirs)
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Config.h.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
||||
|
||||
include( ${CMAKE_SOURCE_DIR}/lang/translations.cmake )
|
||||
|
@@ -15,7 +15,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "delegateconfigwrapper.h"
|
||||
#include "DelegateConfigWrapper.h"
|
||||
#include <QMessageBox>
|
||||
|
||||
|
@@ -17,8 +17,8 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "diagnosticsdialog.h"
|
||||
#include "ui_diagnosticsdialog.h"
|
||||
#include "DiagnosticsDialog.h"
|
||||
#include "ui_DiagnosticsDialog.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
@@ -124,7 +124,7 @@ void DiagnosticsDialog::updateLogView()
|
||||
|
||||
// Q_FOREACH( const QString &peerId, sip->peersOnline() )
|
||||
// {
|
||||
// /* enable this again, when we check the source has this peerId
|
||||
// /* enable this again, when we check the Source.has this peerId
|
||||
// bool connected = false;
|
||||
// Q_FOREACH( const Tomahawk::source_ptr &source, sources )
|
||||
// {
|
@@ -29,7 +29,7 @@
|
||||
|
||||
#define TOMAHAWK_APPLICATION QApplication
|
||||
#include <QApplication>
|
||||
#include "tomahawkwindow.h"
|
||||
#include "TomahawkWindow.h"
|
||||
|
||||
#endif
|
||||
|
@@ -17,7 +17,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "musicscanner.h"
|
||||
#include "MusicScanner.h"
|
||||
|
||||
#include <QtCore/QCoreApplication>
|
||||
|
@@ -16,7 +16,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "resolverconfigdelegate.h"
|
||||
#include "ResolverConfigDelegate.h"
|
||||
|
||||
// #include "resolversmodel.h"
|
||||
#include "ExternalResolverGui.h"
|
||||
@@ -68,7 +68,7 @@ ResolverConfigDelegate::paint( QPainter* painter, const QStyleOptionViewItem& op
|
||||
int rightSplit = itemRect.width();
|
||||
QRect confRect = QRect( rightSplit - ICONSIZE - 2 * PADDING, 2 * PADDING + top, ICONSIZE, ICONSIZE );
|
||||
|
||||
// if the resolver has a config widget, paint it first (right-aligned)
|
||||
// if the Resolver.has a config widget, paint it first (right-aligned)
|
||||
if( index.data( ResolversModel::HasConfig ).toBool() ) {
|
||||
QStyleOptionToolButton topt;
|
||||
topt.rect = confRect;
|
@@ -20,7 +20,7 @@
|
||||
#ifndef RESOLVERCONFIGDELEGATE_H
|
||||
#define RESOLVERCONFIGDELEGATE_H
|
||||
|
||||
#include "configdelegatebase.h"
|
||||
#include "ConfigDelegateBase.h"
|
||||
|
||||
class ResolverConfigDelegate : public ConfigDelegateBase
|
||||
{
|
@@ -17,13 +17,13 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "scanmanager.h"
|
||||
#include "ScanManager.h"
|
||||
|
||||
#include <QtCore/QThread>
|
||||
#include <QtCore/QCoreApplication>
|
||||
#include <QtCore/QTimer>
|
||||
|
||||
#include "musicscanner.h"
|
||||
#include "MusicScanner.h"
|
||||
#include "tomahawksettings.h"
|
||||
#include "utils/tomahawkutils.h"
|
||||
#include "libtomahawk/sourcelist.h"
|
@@ -17,7 +17,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "scrobbler.h"
|
||||
#include "Scrobbler.h"
|
||||
|
||||
#include <QDir>
|
||||
#include <QSettings>
|
@@ -18,7 +18,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "settingsdialog.h"
|
||||
#include "SettingsDialog.h"
|
||||
#include "config.h"
|
||||
|
||||
#include <QtGui/QDesktopServices>
|
||||
@@ -30,17 +30,17 @@
|
||||
#include <QtGui/QSizeGrip>
|
||||
|
||||
#include "AtticaManager.h"
|
||||
#include "tomahawkapp.h"
|
||||
#include "TomahawkApp.h"
|
||||
#include "tomahawksettings.h"
|
||||
#include "delegateconfigwrapper.h"
|
||||
#include "musicscanner.h"
|
||||
#include "DelegateConfigWrapper.h"
|
||||
#include "MusicScanner.h"
|
||||
#include "pipeline.h"
|
||||
#include "resolver.h"
|
||||
#include "Resolver.h"
|
||||
#include "ExternalResolverGui.h"
|
||||
#include "utils/tomahawkutilsgui.h"
|
||||
#include "guihelpers.h"
|
||||
#include "scanmanager.h"
|
||||
#include "settingslistdelegate.h"
|
||||
#include "ScanManager.h"
|
||||
#include "SettingsListDelegate.h"
|
||||
#include "AccountDelegate.h"
|
||||
#include "database/database.h"
|
||||
#include "network/servent.h"
|
||||
@@ -53,8 +53,8 @@
|
||||
#include "utils/logger.h"
|
||||
#include "AccountFactoryWrapper.h"
|
||||
|
||||
#include "ui_proxydialog.h"
|
||||
#include "ui_stackedsettingsdialog.h"
|
||||
#include "ui_ProxyDialog.h"
|
||||
#include "ui_StackedSettingsDialog.h"
|
||||
|
||||
using namespace Tomahawk;
|
||||
using namespace Accounts;
|
@@ -17,7 +17,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "settingslistdelegate.h"
|
||||
#include "SettingsListDelegate.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
#include <QPainter>
|
@@ -16,7 +16,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "shortcuthandler.h"
|
||||
#include "ShortcutHandler.h"
|
||||
|
||||
using namespace Tomahawk;
|
||||
|
@@ -18,7 +18,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "tomahawkapp.h"
|
||||
#include "TomahawkApp.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
@@ -48,12 +48,12 @@
|
||||
#include "network/servent.h"
|
||||
#include "web/api_v1.h"
|
||||
#include "sourcelist.h"
|
||||
#include "shortcuthandler.h"
|
||||
#include "scanmanager.h"
|
||||
#include "ShortcutHandler.h"
|
||||
#include "ScanManager.h"
|
||||
#include "tomahawksettings.h"
|
||||
#include "globalactionmanager.h"
|
||||
#include "database/localcollection.h"
|
||||
#include "musicscanner.h"
|
||||
#include "MusicScanner.h"
|
||||
#include "pipeline.h"
|
||||
#include "dropjob.h"
|
||||
#include "EchonestCatalogSynchronizer.h"
|
||||
@@ -75,8 +75,8 @@
|
||||
#include "resolvers/scriptresolver.h"
|
||||
#include "utils/spotifyparser.h"
|
||||
#include "AtticaManager.h"
|
||||
#include "tomahawkwindow.h"
|
||||
#include "settingsdialog.h"
|
||||
#include "TomahawkWindow.h"
|
||||
#include "SettingsDialog.h"
|
||||
#include "actioncollection.h"
|
||||
#include <QtGui/QMessageBox>
|
||||
#include "widgets/HeaderLabel.h"
|
@@ -23,7 +23,7 @@
|
||||
|
||||
#define APP TomahawkApp::instance()
|
||||
|
||||
#include "headlesscheck.h"
|
||||
#include "HeadlessCheck.h"
|
||||
#include "config.h"
|
||||
|
||||
#include <QtCore/QRegExp>
|
||||
@@ -64,7 +64,7 @@ namespace Tomahawk
|
||||
|
||||
#ifdef LIBLASTFM_FOUND
|
||||
#include <lastfm/NetworkAccessManager>
|
||||
#include "scrobbler.h"
|
||||
#include "Scrobbler.h"
|
||||
#endif
|
||||
|
||||
#ifndef TOMAHAWK_HEADLESS
|
@@ -17,15 +17,15 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "tomahawktrayicon.h"
|
||||
#include "TomahawkTrayIcon.h"
|
||||
|
||||
#include <QtGui/QWheelEvent>
|
||||
|
||||
#include "artist.h"
|
||||
|
||||
#include "audio/audioengine.h"
|
||||
#include "tomahawkapp.h"
|
||||
#include "tomahawkwindow.h"
|
||||
#include "TomahawkApp.h"
|
||||
#include "TomahawkWindow.h"
|
||||
|
||||
#include "utils/logger.h"
|
||||
#include <actioncollection.h>
|
@@ -18,8 +18,8 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "tomahawkwindow.h"
|
||||
#include "ui_tomahawkwindow.h"
|
||||
#include "TomahawkWindow.h"
|
||||
#include "ui_TomahawkWindow.h"
|
||||
|
||||
#include <QAction>
|
||||
#include <QCloseEvent>
|
||||
@@ -53,17 +53,17 @@
|
||||
#include "playlist/playlistview.h"
|
||||
#include "playlist/queueview.h"
|
||||
|
||||
#include "audiocontrols.h"
|
||||
#include "settingsdialog.h"
|
||||
#include "diagnosticsdialog.h"
|
||||
#include "AudioControls.h"
|
||||
#include "SettingsDialog.h"
|
||||
#include "DiagnosticsDialog.h"
|
||||
#include "tomahawksettings.h"
|
||||
#include "sourcelist.h"
|
||||
#include "jobview/JobStatusView.h"
|
||||
#include "jobview/JobStatusModel.h"
|
||||
#include "jobview/ErrorStatusMessage.h"
|
||||
#include "tomahawktrayicon.h"
|
||||
#include "scanmanager.h"
|
||||
#include "tomahawkapp.h"
|
||||
#include "TomahawkTrayIcon.h"
|
||||
#include "ScanManager.h"
|
||||
#include "TomahawkApp.h"
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
#include <qtsparkle/Updater>
|
@@ -15,7 +15,7 @@
|
||||
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "ubuntuunityhack.h"
|
||||
#include "UbuntuUnityHack.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
#include <QProcess>
|
@@ -34,7 +34,7 @@
|
||||
#include <QTweetLib/qtweetmentions.h>
|
||||
#include <QTweetLib/qtweetdmstatus.h>
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
#include "sip/SipPlugin.h"
|
||||
#include "accounts/Account.h"
|
||||
#include "accounts/twitter/tomahawkoauthtwitter.h"
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#ifndef TOMAHAWKOAUTHTWITTERACCOUNT
|
||||
#define TOMAHAWKOAUTHTWITTERACCOUNT
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
#include <utils/tomahawkutils.h>
|
||||
|
||||
#include <QTweetLib/qtweetlib_global.h>
|
||||
|
@@ -26,7 +26,7 @@
|
||||
|
||||
#include "sip/twittersip.h"
|
||||
#include "twitterinfoplugin.h"
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
#include "accounts/Account.h"
|
||||
|
||||
#define MYNAME "ACCOUNTTWITTER"
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#ifndef TWITTERACCOUNTCONFIGWIDGET_H
|
||||
#define TWITTERACCOUNTCONFIGWIDGET_H
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
#include <QTweetLib/qtweetstatus.h>
|
||||
#include <QTweetLib/qtweetdmstatus.h>
|
||||
|
@@ -7,27 +7,27 @@ add_definitions( -DQT_SHARED )
|
||||
add_definitions( -DACCOUNTDLLEXPORT_PRO )
|
||||
|
||||
set( xmppAccountSources
|
||||
xmppaccount.cpp
|
||||
xmppconfigwidget.cpp
|
||||
sip/xmppsip.cpp
|
||||
sip/tomahawkxmppmessage.cpp
|
||||
sip/tomahawkxmppmessagefactory.cpp
|
||||
XmppAccount.cpp
|
||||
XmppConfigWidget.cpp
|
||||
sip/XmppSip.cpp
|
||||
sip/TomahawkXmppMessage.cpp
|
||||
sip/TomahawkXmppMessageFactory.cpp
|
||||
sip/avatarmanager.cpp
|
||||
sip/xmlconsole.cpp
|
||||
XmppInfoPlugin.cpp
|
||||
)
|
||||
|
||||
set( xmppAccountHeaders
|
||||
xmppaccount.h
|
||||
xmppconfigwidget.h
|
||||
sip/xmppsip.h
|
||||
XmppAccount.h
|
||||
XmppConfigWidget.h
|
||||
sip/XmppSip.h
|
||||
sip/avatarmanager.h
|
||||
sip/xmlconsole.h
|
||||
XmppInfoPlugin.h
|
||||
)
|
||||
|
||||
set( xmppAccountUI
|
||||
xmppconfigwidget.ui
|
||||
XmppConfigWidget.ui
|
||||
sip/xmlconsole.ui
|
||||
)
|
||||
|
||||
|
@@ -18,10 +18,9 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "xmppaccount.h"
|
||||
#include "xmppconfigwidget.h"
|
||||
#include "XmppAccount.h"
|
||||
#include "XmppConfigWidget.h"
|
||||
#include "sip/SipPlugin.h"
|
||||
#include "ui_xmppconfigwidget.h"
|
||||
#include "XmppInfoPlugin.h"
|
||||
|
||||
#include <QtCore/QtPlugin>
|
@@ -22,8 +22,8 @@
|
||||
#ifndef XMPPACCOUNT_H
|
||||
#define XMPPACCOUNT_H
|
||||
|
||||
#include "sip/xmppsip.h"
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "sip/XmppSip.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
#include "accounts/Account.h"
|
||||
|
||||
#define MYNAME "ACCOUNTJABBER"
|
@@ -17,9 +17,9 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "xmppaccount.h"
|
||||
#include "xmppconfigwidget.h"
|
||||
#include "ui_xmppconfigwidget.h"
|
||||
#include "XmppAccount.h"
|
||||
#include "XmppConfigWidget.h"
|
||||
#include "ui_XmppConfigWidget.h"
|
||||
|
||||
#include <QMessageBox>
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#ifndef JABBERACCOUNTCONFIGWIDGET_H
|
||||
#define JABBERACCOUNTCONFIGWIDGET_H
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
#include <QWidget>
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include "XmppInfoPlugin.h"
|
||||
|
||||
#include "globalactionmanager.h"
|
||||
#include "sip/xmppsip.h"
|
||||
#include "sip/XmppSip.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
||||
|
@@ -2,20 +2,20 @@
|
||||
# fake google plugin
|
||||
|
||||
set( googleHeaders
|
||||
../xmppaccount.h
|
||||
../xmppconfigwidget.h
|
||||
../sip/xmppsip.h
|
||||
../XmppAccount.h
|
||||
../XmppConfigWidget.h
|
||||
../sip/XmppSip.h
|
||||
../sip/avatarmanager.h
|
||||
../sip/xmlconsole.h
|
||||
../XmppInfoPlugin.h
|
||||
googlewrapper.h )
|
||||
|
||||
set( googleSources
|
||||
../xmppaccount.cpp
|
||||
../xmppconfigwidget.cpp
|
||||
../sip/xmppsip.cpp
|
||||
../sip/tomahawkxmppmessage.cpp
|
||||
../sip/tomahawkxmppmessagefactory.cpp
|
||||
../XmppAccount.cpp
|
||||
../XmppConfigWidget.cpp
|
||||
../sip/XmppSip.cpp
|
||||
../sip/TomahawkXmppMessage.cpp
|
||||
../sip/TomahawkXmppMessageFactory.cpp
|
||||
../sip/avatarmanager.cpp
|
||||
../sip/xmlconsole.cpp
|
||||
../XmppInfoPlugin.cpp
|
||||
|
@@ -19,8 +19,8 @@
|
||||
|
||||
|
||||
#include "googlewrapper.h"
|
||||
#include "xmppconfigwidget.h"
|
||||
#include "ui_xmppconfigwidget.h"
|
||||
#include "XmppConfigWidget.h"
|
||||
#include "ui_XmppConfigWidget.h"
|
||||
|
||||
#include "utils/tomahawkutilsgui.h"
|
||||
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#ifndef GOOGLEWRAPPER_H
|
||||
#define GOOGLEWRAPPER_H
|
||||
|
||||
#include "xmppaccount.h"
|
||||
#include "XmppAccount.h"
|
||||
|
||||
namespace Tomahawk
|
||||
{
|
||||
|
@@ -19,7 +19,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "xmppsip.h"
|
||||
#include "XmppSip.h"
|
||||
|
||||
#include "config.h"
|
||||
|
@@ -51,7 +51,7 @@
|
||||
#define TOMAHAWK_FEATURE QLatin1String( "tomahawk:sip:v1" )
|
||||
#define TOMAHAWK_CAP_NODE_NAME QLatin1String( "http://tomahawk-player.org/" )
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
#include "XmppInfoPlugin.h"
|
||||
|
@@ -25,7 +25,7 @@
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QDir>
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
class ACCOUNTDLLEXPORT AvatarManager : public QObject
|
||||
{
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
#define TOMAHAWK_SIP_MESSAGE_NS QLatin1String("http://www.tomhawk-player.org/sip/transports")
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
class TomahawkXmppMessagePrivate;
|
||||
class ACCOUNTDLLEXPORT TomahawkXmppMessage : public Jreen::Payload
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
#include <jreen/stanzaextension.h>
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
class ACCOUNTDLLEXPORT TomahawkXmppMessageFactory : public Jreen::PayloadFactory<TomahawkXmppMessage>
|
||||
{
|
||||
|
@@ -33,7 +33,7 @@ namespace Ui {
|
||||
class XmlConsole;
|
||||
}
|
||||
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
class ACCOUNTDLLEXPORT XmlConsole : public QWidget, public Jreen::XmlStreamHandler
|
||||
{
|
||||
|
@@ -30,7 +30,7 @@
|
||||
|
||||
#include "database/database.h"
|
||||
#include "network/servent.h"
|
||||
#include "accounts/accountdllmacro.h"
|
||||
#include "accounts/AccountDllMacro.h"
|
||||
|
||||
class Node : public QObject
|
||||
{
|
||||
|
@@ -24,7 +24,7 @@
|
||||
#include "accounts/Account.h"
|
||||
#include "tomahawkzeroconf.h"
|
||||
|
||||
#include "../accountdllmacro.h"
|
||||
#include "../AccountDllMacro.h"
|
||||
|
||||
#include <QtCore/QTimer>
|
||||
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#define ZEROCONF_ACCOUNTS_H
|
||||
|
||||
#include "accounts/Account.h"
|
||||
#include "../accountdllmacro.h"
|
||||
#include "../AccountDllMacro.h"
|
||||
|
||||
class SipPlugin;
|
||||
|
||||
|
@@ -174,11 +174,11 @@ set( libSources
|
||||
functimeout.cpp
|
||||
playlist.cpp
|
||||
playlistplaylistinterface.cpp
|
||||
resolver.cpp
|
||||
Resolver.cpp
|
||||
ExternalResolver.cpp
|
||||
query.cpp
|
||||
result.cpp
|
||||
source.cpp
|
||||
Source.cpp
|
||||
sourceplaylistinterface.cpp
|
||||
playlistinterface.cpp
|
||||
|
||||
|
@@ -23,7 +23,7 @@
|
||||
|
||||
#include "query.h"
|
||||
#include "dllmacro.h"
|
||||
#include "resolver.h"
|
||||
#include "Resolver.h"
|
||||
|
||||
#include <boost/function.hpp>
|
||||
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#define LATCHMANAGER_H
|
||||
|
||||
#include "dllmacro.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
|
||||
#include <QtCore/QObject>
|
||||
|
||||
|
@@ -16,4 +16,4 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "resolver.h"
|
||||
#include "Resolver.h"
|
@@ -17,7 +17,7 @@
|
||||
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
|
||||
#include "collection.h"
|
||||
#include "sourcelist.h"
|
@@ -19,7 +19,7 @@
|
||||
#include "TomahawkSettingsGui.h"
|
||||
|
||||
#include <QDesktopServices>
|
||||
#include "settingsdialog.h"
|
||||
#include "SettingsDialog.h"
|
||||
|
||||
using namespace Tomahawk;
|
||||
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#include <QVariant>
|
||||
|
||||
#include "tomahawksettings.h"
|
||||
#include "tomahawkapp.h"
|
||||
#include "TomahawkApp.h"
|
||||
|
||||
#include "utils/logger.h"
|
||||
#include "jobview/AclJobItem.h"
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include <QMutex>
|
||||
#include <QVariant>
|
||||
|
||||
#include "headlesscheck.h"
|
||||
#include "HeadlessCheck.h"
|
||||
#include "dllmacro.h"
|
||||
|
||||
class DLLEXPORT ACLRegistry : public QObject
|
||||
|
@@ -33,7 +33,7 @@
|
||||
#include "network/servent.h"
|
||||
#include "utils/qnr_iodevicestream.h"
|
||||
#include "utils/closure.h"
|
||||
#include "headlesscheck.h"
|
||||
#include "HeadlessCheck.h"
|
||||
#include "infosystem/infosystem.h"
|
||||
#include "album.h"
|
||||
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#include <QMetaObject>
|
||||
#include <QGenericArgument>
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
|
||||
#include "utils/logger.h"
|
||||
#include <PlaylistUpdaterInterface.h>
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#include "playlistview.h"
|
||||
#include "viewmanager.h"
|
||||
#include "query.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "artist.h"
|
||||
#include "album.h"
|
||||
#include "utils/logger.h"
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#include <QDir>
|
||||
|
||||
#include "collection.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "typedefs.h"
|
||||
|
||||
#include "dllmacro.h"
|
||||
|
@@ -22,7 +22,7 @@
|
||||
|
||||
#include "artist.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "utils/tomahawkutils.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -22,7 +22,7 @@
|
||||
|
||||
#include "artist.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "utils/tomahawkutils.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -18,7 +18,7 @@
|
||||
#include "databasecommand_collectionattributes.h"
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
|
||||
DatabaseCommand_CollectionAttributes::DatabaseCommand_CollectionAttributes( DatabaseCommand_SetCollectionAttributes::AttributeType type )
|
||||
: DatabaseCommand()
|
||||
|
@@ -19,7 +19,7 @@
|
||||
#include "databasecommand_collectionstats.h"
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
using namespace Tomahawk;
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include "dynamic/DynamicControl.h"
|
||||
#include "dynamic/GeneratorInterface.h"
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "network/servent.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -20,7 +20,7 @@
|
||||
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "tomahawksqlquery.h"
|
||||
#include "network/servent.h"
|
||||
|
@@ -24,7 +24,7 @@
|
||||
#include "artist.h"
|
||||
#include "album.h"
|
||||
#include "collection.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "database/database.h"
|
||||
#include "database/databaseimpl.h"
|
||||
#include "network/servent.h"
|
||||
|
@@ -21,7 +21,7 @@
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "databasecommandloggable.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "typedefs.h"
|
||||
|
||||
#include "dllmacro.h"
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "dynamic/DynamicPlaylist.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "playlist.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "network/servent.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "dynamic/DynamicPlaylist.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "dynamic/DynamicPlaylist.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -20,7 +20,7 @@
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "tomahawksqlquery.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
||||
|
@@ -22,7 +22,7 @@
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "collection.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "network/servent.h"
|
||||
#include "utils/logger.h"
|
||||
|
||||
|
@@ -18,7 +18,7 @@
|
||||
#include "databasecommand_setcollectionattributes.h"
|
||||
|
||||
#include "databaseimpl.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "network/servent.h"
|
||||
#include "sourcelist.h"
|
||||
#include "EchonestCatalogSynchronizer.h"
|
||||
|
@@ -20,7 +20,7 @@
|
||||
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "tomahawksqlquery.h"
|
||||
#include "dynamic/DynamicPlaylist.h"
|
||||
|
@@ -20,7 +20,7 @@
|
||||
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "tomahawksqlquery.h"
|
||||
#include "network/servent.h"
|
||||
|
@@ -19,7 +19,7 @@
|
||||
#ifndef DATABASERESOLVER_H
|
||||
#define DATABASERESOLVER_H
|
||||
|
||||
#include "resolver.h"
|
||||
#include "Resolver.h"
|
||||
#include "result.h"
|
||||
#include "artist.h"
|
||||
#include "album.h"
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#include <QTime>
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
#include "database.h"
|
||||
#include "databaseimpl.h"
|
||||
#include "databasecommandloggable.h"
|
||||
|
@@ -22,7 +22,7 @@
|
||||
|
||||
#include "artist.h"
|
||||
#include "album.h"
|
||||
#include "source.h"
|
||||
#include "Source.h"
|
||||
|
||||
#include "utils/spotifyparser.h"
|
||||
#include "utils/itunesparser.h"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user