diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-06 22:12:19 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-06 22:12:19 +0900 |
commit | ea865bade764c095aff175d10a4c2601a9ee34e0 (patch) | |
tree | 1f7ac2e83e638560a71fbb2974524f1603d6ea81 | |
parent | e24ebc6dc5382ad05077575d267f66efac39e8dd (diff) | |
download | libquotient-ea865bade764c095aff175d10a4c2601a9ee34e0.tar.gz libquotient-ea865bade764c095aff175d10a4c2601a9ee34e0.zip |
Corrected the faulty VS version
-rw-r--r-- | settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ namespace QMatrixClient class Settings: public QSettings
{
public:
-#if defined(_MSC_VER) && _MSC_VER <= 1200
+#if defined(_MSC_VER) && _MSC_VER <= 1900
// VS 2013 (and probably older) aren't friends with 'using' statements
// that involve private constructors
explicit Settings(QObject* parent = 0) : QSettings(parent) { }
|