cdEncode config item no longer used!

This commit is contained in:
craig.p.drummond
2013-07-10 18:35:21 +00:00
parent ac204c56fd
commit dcdc4ac882
2 changed files with 1 additions and 19 deletions

View File

@@ -606,12 +606,6 @@ bool Settings::cdAuto()
{
return GET_BOOL("cdAuto", true);
}
#ifdef LAME_FOUND
bool Settings::cdEncode()
{
return GET_BOOL("cdEncode", true);
}
#endif
#endif
#if defined CDDB_FOUND && defined MUSICBRAINZ5_FOUND
@@ -1012,12 +1006,6 @@ void Settings::saveCdAuto(bool v)
{
SET_VALUE_MOD(cdAuto)
}
#ifdef LAME_FOUND
void Settings::saveCdEncode(bool v)
{
SET_VALUE_MOD(cdEncode)
}
#endif
#endif
#if defined CDDB_FOUND && defined MUSICBRAINZ5_FOUND

View File

@@ -134,7 +134,7 @@ public:
QString page();
QStringList hiddenPages();
bool gnomeMediaKeys();
#ifdef ENABLE_DEVICES_SUPPORT
#ifdef ENABLE_DEVICES_SUPPORT
bool overwriteSongs();
bool showDeleteAction();
int devicesView();
@@ -157,9 +157,6 @@ public:
#endif
#if defined CDDB_FOUND || defined MUSICBRAINZ5_FOUND
bool cdAuto();
#ifdef LAME_FOUND
bool cdEncode();
#endif
#endif
#if defined CDDB_FOUND && defined MUSICBRAINZ5_FOUND
bool useCddb();
@@ -239,9 +236,6 @@ public:
#endif
#if defined CDDB_FOUND || defined MUSICBRAINZ5_FOUND
void saveCdAuto(bool v);
#ifdef LAME_FOUND
void saveCdEncode(bool v);
#endif
#endif
#if defined CDDB_FOUND && defined MUSICBRAINZ5_FOUND
void saveUseCddb(bool v);