Remove useless constructor

This commit is contained in:
Arnaud Bienner 2011-11-29 14:15:55 +01:00
parent 1c99c8cc3b
commit 6f4fab54a2
2 changed files with 0 additions and 6 deletions

View File

@ -21,11 +21,6 @@
#include "core/logging.h"
#include "internet/internetplaylistitem.h"
GroovesharkRadio::GroovesharkRadio()
: tag_id_(0),
first_time_(true) {
}
GroovesharkRadio::GroovesharkRadio(GroovesharkService* service, int tag_id)
: service_(service),
tag_id_(tag_id),

View File

@ -25,7 +25,6 @@ class GroovesharkService;
class GroovesharkRadio : public smart_playlists::Generator {
public:
//GroovesharkRadio();
GroovesharkRadio(GroovesharkService* service, int tag_id);
QString type() const { return "Grooveshark"; }