From d6301fca6b78db52d0d98f8e0799aba175ad2e59 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:21:41 +0200 Subject: 5.8 --- Application.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Application.h') 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); -- cgit