summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/QCMake.cxx
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2008-02-01 15:41:29 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2008-02-01 15:41:29 (GMT)
commit41ad9d20df1b6d5466459e654f75094c008c9a0b (patch)
tree7f3fa76fbd229cdc3af798d45686dca0176209e1 /Source/QtDialog/QCMake.cxx
parent587419db831b9e7e2172bcb6e5b04d81198c5eb8 (diff)
downloadCMake-41ad9d20df1b6d5466459e654f75094c008c9a0b.zip
CMake-41ad9d20df1b6d5466459e654f75094c008c9a0b.tar.gz
CMake-41ad9d20df1b6d5466459e654f75094c008c9a0b.tar.bz2
ENH: Use translation file if it exists for the locale.
Consolidate some strings. More responsive interrupting. Prompt user if they try to close during configure, and allow them to close.
Diffstat (limited to 'Source/QtDialog/QCMake.cxx')
-rw-r--r--Source/QtDialog/QCMake.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx
index 92fca88..5c68898 100644
--- a/Source/QtDialog/QCMake.cxx
+++ b/Source/QtDialog/QCMake.cxx
@@ -292,6 +292,7 @@ void QCMake::progressCallback(const char* msg, float percent, void* cd)
{
emit self->outputMessage(msg);
}
+ QCoreApplication::processEvents();
}
void QCMake::errorCallback(const char* msg, const char* /*title*/,
@@ -299,6 +300,7 @@ void QCMake::errorCallback(const char* msg, const char* /*title*/,
{
QCMake* self = reinterpret_cast<QCMake*>(cd);
emit self->errorMessage(msg);
+ QCoreApplication::processEvents();
}
QString QCMake::binaryDirectory() const