From c0681ceff27de5c0b992398b5933b281e702f42d Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 11 Nov 2014 01:19:01 +0100 Subject: [PATCH] Renamed importXspfPath to importPlaylistPath in TomahawkSettings. --- src/libtomahawk/TomahawkSettings.cpp | 10 +++++----- src/libtomahawk/TomahawkSettings.h | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/libtomahawk/TomahawkSettings.cpp b/src/libtomahawk/TomahawkSettings.cpp index 0965a05ff..d94fcdcbc 100644 --- a/src/libtomahawk/TomahawkSettings.cpp +++ b/src/libtomahawk/TomahawkSettings.cpp @@ -1545,19 +1545,19 @@ TomahawkSettings::updateIndex() QString -TomahawkSettings::importXspfPath() const +TomahawkSettings::importPlaylistPath() const { - if ( contains( "importXspfPath" ) ) - return value( "importXspfPath" ).toString(); + if ( contains( "importPlaylistPath" ) ) + return value( "importPlaylistPath" ).toString(); else return QDir::homePath(); } void -TomahawkSettings::setImportXspfPath( const QString& path ) +TomahawkSettings::setImportPlaylistPath( const QString& path ) { - setValue( "importXspfPath", path ); + setValue( "importPlaylistPath", path ); } diff --git a/src/libtomahawk/TomahawkSettings.h b/src/libtomahawk/TomahawkSettings.h index c2ed91f72..f518dd759 100644 --- a/src/libtomahawk/TomahawkSettings.h +++ b/src/libtomahawk/TomahawkSettings.h @@ -216,8 +216,8 @@ public: PrivateListeningMode privateListeningMode() const; void setPrivateListeningMode( PrivateListeningMode mode ); - void setImportXspfPath( const QString& path ); - QString importXspfPath() const; + void setImportPlaylistPath( const QString& path ); + QString importPlaylistPath() const; Tomahawk::SerializedUpdaters playlistUpdaters() const; void setPlaylistUpdaters( const Tomahawk::SerializedUpdaters& updaters );