summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Application.h b/Application.h
index b0968f6d..4121ae4c 100644
--- a/Application.h
+++ b/Application.h
@@ -1,7 +1,7 @@
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) ZenJu (zenju AT gmx DOT de) - All Rights Reserved *
+// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef FREEFILESYNCAPP_H
@@ -18,7 +18,7 @@ private:
virtual bool OnInit();
virtual int OnRun();
virtual int OnExit() { return 0; }
- virtual bool OnExceptionInMainLoop();
+ virtual bool OnExceptionInMainLoop() { throw; } //just re-throw and avoid display of additional messagebox: it will be caught in OnRun()
void OnStartApplication(wxIdleEvent& event);
void OnQueryEndSession(wxEvent& event);
bgstack15