From dfa97018d242a736ce4d73803a52f70e701b7f2f Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 9 Feb 2009 05:06:05 -0500 Subject: Remove unneeded template specifications --- sigscript/Config.h | 2 +- sigscript/Global.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sigscript') diff --git a/sigscript/Config.h b/sigscript/Config.h index 69277e61..209795bc 100644 --- a/sigscript/Config.h +++ b/sigscript/Config.h @@ -98,7 +98,7 @@ template bool Config::valueOfType(const QString& name, T* value, con while (par) { if (par->hasValue(name)) - return par->valueOfType(name, value, true); + return par->valueOfType(name, value, true); par = par->m_parent; } } diff --git a/sigscript/Global.h b/sigscript/Global.h index 56b50fc6..c1529bff 100644 --- a/sigscript/Global.h +++ b/sigscript/Global.h @@ -43,7 +43,7 @@ } #define ALLOW_OVERRIDE(class, type, variable) \ type value; \ - if (valueOfType(#variable, &value) && m_##class->variable##Check(value)) \ + if (valueOfType(#variable, &value) && m_##class->variable##Check(value)) \ return value #endif -- cgit