From c7ac6b5670b266eb17e16171f5349853d5dff359 Mon Sep 17 00:00:00 2001
From: Christian Muehlhaeuser <muesli@gmail.com>
Date: Mon, 7 Nov 2011 15:42:02 +0100
Subject: [PATCH] * Don't emit changed() twice in TomahawkSettings.

---
 src/libtomahawk/tomahawksettings.cpp | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

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
 {