summaryrefslogtreecommitdiffstats
path: root/Source/cmakemain.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-17 14:44:09 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-17 14:44:09 (GMT)
commita4429ad30a069f61c4630b54e44c3e1d747f9d41 (patch)
treea96af73c3673daffcad588e63ff144e28c29b575 /Source/cmakemain.cxx
parent95a8331edb4ba7b53abd796066165b29f70ff258 (diff)
downloadCMake-a4429ad30a069f61c4630b54e44c3e1d747f9d41.zip
CMake-a4429ad30a069f61c4630b54e44c3e1d747f9d41.tar.gz
CMake-a4429ad30a069f61c4630b54e44c3e1d747f9d41.tar.bz2
STYLE: fix line lengths and add "remove -f" to the docs
Alex
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r--Source/cmakemain.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 70caeb8..a6cd1ed 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -211,12 +211,14 @@ static std::string cmakemainGetStack(void *clientdata)
return msg;
}
-static void cmakemainErrorCallback(const char* m, const char* title, bool& nomore, void *clientdata)
+static void cmakemainErrorCallback(const char* m, const char* title,
+ bool& nomore, void *clientdata)
{
std::cerr << m << cmakemainGetStack(clientdata) << std::endl << std::flush;
}
-static void cmakemainProgressCallback(const char *m, float prog, void* clientdata)
+static void cmakemainProgressCallback(const char *m, float prog,
+ void* clientdata)
{
cmMakefile* mf = cmakemainGetMakefile(clientdata);
std::string dir;
@@ -233,7 +235,7 @@ static void cmakemainProgressCallback(const char *m, float prog, void* clientdat
if ((prog < 0) || (!dir.empty()))
{
- std::cout << "-- " << m << dir << cmakemainGetStack(clientdata) << std::endl;
+ std::cout << "-- " << m << dir << cmakemainGetStack(clientdata)<<std::endl;
}
std::cout.flush();