summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraEclipseCDT4Generator.cxx
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2012-08-16 21:37:15 (GMT)
committerAlex Neundorf <neundorf@kde.org>2012-08-16 21:37:15 (GMT)
commita3815e67cf9ff7f542e809d8974b695893a6a783 (patch)
tree53fa70ef49584f267f77f62d930903b352afe425 /Source/cmExtraEclipseCDT4Generator.cxx
parent9110d0eab4ed3b024ad485eaaf15b1d7e4c38744 (diff)
downloadCMake-a3815e67cf9ff7f542e809d8974b695893a6a783.zip
CMake-a3815e67cf9ff7f542e809d8974b695893a6a783.tar.gz
CMake-a3815e67cf9ff7f542e809d8974b695893a6a783.tar.bz2
-fix line length
Alex
Diffstat (limited to 'Source/cmExtraEclipseCDT4Generator.cxx')
-rw-r--r--Source/cmExtraEclipseCDT4Generator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmExtraEclipseCDT4Generator.cxx b/Source/cmExtraEclipseCDT4Generator.cxx
index 99ca375..bb650eb 100644
--- a/Source/cmExtraEclipseCDT4Generator.cxx
+++ b/Source/cmExtraEclipseCDT4Generator.cxx
@@ -614,10 +614,10 @@ void cmExtraEclipseCDT4Generator::AppendIncludeDirectories(
// handle framework include dirs on OSX, the remainder after the
// Frameworks/ part has to be stripped
// /System/Library/Frameworks/GLUT.framework/Headers
- cmsys::RegularExpression frameworkRegex("(.+/Frameworks)/.+\\.framework/");
- if(frameworkRegex.find(dir.c_str()))
+ cmsys::RegularExpression frameworkRx("(.+/Frameworks)/.+\\.framework/");
+ if(frameworkRx.find(dir.c_str()))
{
- dir = frameworkRegex.match(1);
+ dir = frameworkRx.match(1);
}
if(emittedDirs.find(dir) == emittedDirs.end())