summaryrefslogtreecommitdiff
path: root/Application.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:51:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:51:28 +0200
commit8f27768c1c35f09152b35caeab20e705086fd03f (patch)
tree1b1c8fa36bb2b7fc60e2be551a454de239bb5c7f /Application.cpp
parent1.7 (diff)
downloadFreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.tar.gz
FreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.tar.bz2
FreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.zip
1.8
Diffstat (limited to 'Application.cpp')
-rw-r--r--Application.cpp19
1 files changed, 13 insertions, 6 deletions
diff --git a/Application.cpp b/Application.cpp
index 775fac65..7a4f2831 100644
--- a/Application.cpp
+++ b/Application.cpp
@@ -45,7 +45,9 @@ void Application::initialize()
throw RuntimeException(_("Could not set working directory to directory containing executable file!"));
//set program language
+ SetExitOnFrameDelete(false); //prevent messagebox from becoming top-level window
programLanguage.loadLanguageFromCfg();
+ SetExitOnFrameDelete(true);
//activate support for .png files
wxImage::AddHandler(new wxPNGHandler);
@@ -127,18 +129,20 @@ void Application::logInit()
{
wxString tmp = wxDateTime::Now().FormatISOTime();
tmp.Replace(wxT(":"), wxEmptyString);
- wxString logfileName = wxString(wxT("FFS_")) + wxDateTime::Now().FormatISODate() + '_' + tmp + wxT(".log");
+ wxString logfileName = wxString(wxT("FFS_")) + wxDateTime::Now().FormatISODate() + wxChar('_') + tmp + wxT(".log");
- logFile.Open(logfileName.c_str(), wxT("wb"));
+ logFile.Open(logfileName.c_str(), wxT("w"));
if (!logFile.IsOpened())
throw RuntimeException(_("Unable to create logfile!"));
logFile.Write(wxString(_("FreeFileSync (Date: ")) + wxDateTime::Now().FormatDate() + _(" Time: ") + wxDateTime::Now().FormatTime() + wxT(")") + wxChar('\n'));
- logFile.Write(wxString(_("-------------------------------------------------")) + '\n');
+ logFile.Write(wxString(_("-------------------------------------------------")) + wxChar('\n'));
logFile.Write(wxChar('\n'));
logFile.Write(_("Log-messages:\n-------------"));
logFile.Write(wxChar('\n'));
logWrite(_("Start"));
logFile.Write(wxChar('\n'));
+
+totalTime.Start(); //measure total time
}
@@ -156,7 +160,10 @@ void Application::logWrite(const wxString& logText, const wxString& problemType)
void Application::logClose(const wxString& finalText)
{
logFile.Write(wxChar('\n'));
- logWrite(finalText, _("Stop"));
+
+ long time = totalTime.Time(); //retrieve total time
+ logWrite(finalText + wxT(" (") + _("Total time: ") + (wxTimeSpan::Milliseconds(time)).Format() + wxT(")"), _("Stop"));
+
//logFile.close(); <- not needed
}
@@ -617,9 +624,9 @@ int CommandLineStatusUpdater::reportError(const wxString& text)
inline
-void CommandLineStatusUpdater::triggerUI_Refresh()
+void CommandLineStatusUpdater::triggerUI_Refresh(bool asyncProcessActive)
{
- if (abortionRequested)
+ if (abortionRequested && !asyncProcessActive)
throw AbortThisProcess(); //may be triggered by the SyncStatusDialog
if (!silentMode)
bgstack15