1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-10-04 17:41:42 +02:00

Use TomahawkSettings set/lastChartIds instead of QSettings

This commit is contained in:
Hugo Lindström
2012-09-24 14:40:37 +02:00
parent c1c40cac37
commit 46772ee261
3 changed files with 19 additions and 3 deletions

View File

@@ -1368,6 +1368,19 @@ TomahawkSettings::setPlaylistUpdaters( const SerializedUpdaters& updaters )
}
void
TomahawkSettings::setLastChartIds( const QVariant& ids ){
setValue( "chartIds", ids );
}
QVariant TomahawkSettings::lastChartIds(){
return value( "chartIds" ).value<QVariant>();
}
void
TomahawkSettings::registerCustomSettingsHandlers()
{