Commit 8bbf16dd authored by Francisco Facioni's avatar Francisco Facioni

Fixes clang compilation error

According to ISO C++03 14.2/4 it should use the template keyword to fix this => http://stackoverflow.com/a/3786481/724098
parent 5e008c87
...@@ -1053,7 +1053,7 @@ private: ...@@ -1053,7 +1053,7 @@ private:
{ {
return QStringList(); return QStringList();
} }
return settings.value(key).value<QStringList>(); return settings.value(key).template value<QStringList>();
} }
QStringList getStoredCmdsForInput(QString input) QStringList getStoredCmdsForInput(QString input)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment