summaryrefslogtreecommitdiffstats
path: root/src/preferences/configobject.h
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2017-01-01 14:57:10 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2017-01-01 14:58:23 +0100
commitff6fe9f714c379aca579a83790a42e8f346fa27b (patch)
tree0bb6d2ca7f86271de4fb85fe343e029231a12a55 /src/preferences/configobject.h
parentd4ba39502be14ebc3265d0465e69a23aad60ae46 (diff)
remove inline getValueString to fix Mac build
Diffstat (limited to 'src/preferences/configobject.h')
-rw-r--r--src/preferences/configobject.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/preferences/configobject.h b/src/preferences/configobject.h
index 18f977ff39..42da05723b 100644
--- a/src/preferences/configobject.h
+++ b/src/preferences/configobject.h
@@ -125,12 +125,6 @@ template <class ValueType> class ConfigObject {
QString getValue(const ConfigKey& key, const char* default_value) const;
QString getValueString(const ConfigKey& key) const;
- QString getValueString(const ConfigKey& key, const QString& default_value) const{
- return getValue(key, default_value);
- }
- QString getValueString(const ConfigKey& key, const char* default_value) const {
- return getValue(key, default_value);
- }
QMultiHash<ValueType, ConfigKey> transpose() const;