diff --git a/src/libtomahawk/tomahawksettings.cpp b/src/libtomahawk/tomahawksettings.cpp index 6719f63b2..71fc08c21 100644 --- a/src/libtomahawk/tomahawksettings.cpp +++ b/src/libtomahawk/tomahawksettings.cpp @@ -489,32 +489,35 @@ TomahawkSettings::setVerboseNotifications( bool notifications ) setValue( "ui/notifications/verbose", notifications ); } + bool TomahawkSettings::showOfflineSources() const { return value( "collection/sources/showoffline", false ).toBool(); } + void TomahawkSettings::setShowOfflineSources( bool show ) { setValue( "collection/sources/showoffline", show ); } + bool TomahawkSettings::enableEchonestCatalogs() const { return value( "collection/enable_catalogs", false ).toBool(); } + void TomahawkSettings::setEnableEchonestCatalogs( bool enable ) { setValue( "collection/enable_catalogs", enable ); - - emit changed(); } + QByteArray TomahawkSettings::playlistColumnSizes( const QString& playlistid ) const {