summaryrefslogtreecommitdiffstats
path: root/src/tools/ccsc/ccsc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/ccsc/ccsc.cpp')
-rw-r--r--src/tools/ccsc/ccsc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/ccsc/ccsc.cpp b/src/tools/ccsc/ccsc.cpp
index c7b3098..0b817a3 100644
--- a/src/tools/ccsc/ccsc.cpp
+++ b/src/tools/ccsc/ccsc.cpp
@@ -100,7 +100,7 @@ VersionData CCSC::Group::getToolchainVersion()
{
if ( !Compile::Config::withWine(*this) ) {
TQStringList lines;
- if ( checkExecutable(Tool::Category::Compiler, lines) && lines.count()>=1 && lines[0].tqcontains("3.") ) return VersionData(3, 0, 0);
+ if ( checkExecutable(Tool::Category::Compiler, lines) && lines.count()>=1 && lines[0].contains("3.") ) return VersionData(3, 0, 0);
}
return VersionData(4, 0, 0); // default
}