mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 11:20:22 +02:00
* Remove WebCollection altogether. We've established it's not quite gonna work out that way.
This commit is contained in:
@@ -21,7 +21,6 @@ set( libSources
|
|||||||
artist.cpp
|
artist.cpp
|
||||||
album.cpp
|
album.cpp
|
||||||
collection.cpp
|
collection.cpp
|
||||||
webcollection.cpp
|
|
||||||
playlist.cpp
|
playlist.cpp
|
||||||
resolver.cpp
|
resolver.cpp
|
||||||
query.cpp
|
query.cpp
|
||||||
@@ -201,7 +200,6 @@ set( libHeaders
|
|||||||
|
|
||||||
aclsystem.h
|
aclsystem.h
|
||||||
collection.h
|
collection.h
|
||||||
webcollection.h
|
|
||||||
query.h
|
query.h
|
||||||
resolver.h
|
resolver.h
|
||||||
result.h
|
result.h
|
||||||
|
@@ -1,32 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright (C) 2011 Leo Franchi <lfranchi@kde.org>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
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
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along
|
|
||||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#include "webcollection.h"
|
|
||||||
|
|
||||||
using namespace Tomahawk;
|
|
||||||
|
|
||||||
WebCollection::WebCollection( const source_ptr& source, const QString& name, QObject* parent )
|
|
||||||
: Collection( source, name, parent )
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
WebCollection::~WebCollection()
|
|
||||||
{
|
|
||||||
}
|
|
@@ -1,43 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright (C) 2011 Leo Franchi <lfranchi@kde.org>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
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
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along
|
|
||||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef WEBCOLLECTION_H
|
|
||||||
#define WEBCOLLECTION_H
|
|
||||||
|
|
||||||
#include "collection.h"
|
|
||||||
#include "dllmacro.h"
|
|
||||||
|
|
||||||
namespace Tomahawk
|
|
||||||
{
|
|
||||||
|
|
||||||
class DLLEXPORT WebCollection : public Collection
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
WebCollection( const source_ptr& source, const QString& name = QString(), QObject* parent = 0 );
|
|
||||||
virtual ~WebCollection();
|
|
||||||
|
|
||||||
virtual void removeTracks( const QDir& ) {}
|
|
||||||
virtual void addTracks( const QList< QVariant >& ) {}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // WEBCOLLECTION_H
|
|
@@ -51,7 +51,6 @@
|
|||||||
#include "scanmanager.h"
|
#include "scanmanager.h"
|
||||||
#include "tomahawksettings.h"
|
#include "tomahawksettings.h"
|
||||||
#include "globalactionmanager.h"
|
#include "globalactionmanager.h"
|
||||||
#include "webcollection.h"
|
|
||||||
#include "database/localcollection.h"
|
#include "database/localcollection.h"
|
||||||
#include "musicscanner.h"
|
#include "musicscanner.h"
|
||||||
|
|
||||||
@@ -482,13 +481,6 @@ TomahawkApp::initLocalCollection()
|
|||||||
|
|
||||||
src->addCollection( coll );
|
src->addCollection( coll );
|
||||||
SourceList::instance()->setLocal( src );
|
SourceList::instance()->setLocal( src );
|
||||||
|
|
||||||
// dummy source/collection for web-based result-hints.
|
|
||||||
/* source_ptr dummy( new Source( -1, "" ) );
|
|
||||||
dummy->setOnline();
|
|
||||||
collection_ptr dummycol( new WebCollection( dummy ) );
|
|
||||||
dummy->addCollection( dummycol );
|
|
||||||
SourceList::instance()->setWebSource( dummy );*/
|
|
||||||
SourceList::instance()->loadSources();
|
SourceList::instance()->loadSources();
|
||||||
|
|
||||||
// to make the stats signal be emitted by our local source
|
// to make the stats signal be emitted by our local source
|
||||||
|
Reference in New Issue
Block a user