From 823740e1ffa2b3bd39f8dea8062f5c5a0d9c741b Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Thu, 20 Apr 2017 16:55:28 -0600 Subject: normalize most lineendings --- wx+/app_main.h | 88 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) (limited to 'wx+/app_main.h') diff --git a/wx+/app_main.h b/wx+/app_main.h index 4b2d92a4..48148802 100755 --- a/wx+/app_main.h +++ b/wx+/app_main.h @@ -1,44 +1,44 @@ -// ***************************************************************************** -// * This file is part of the FreeFileSync project. It is distributed under * -// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 * -// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved * -// ***************************************************************************** - -#ifndef APP_MAIN_H_08215601837818347575856 -#define APP_MAIN_H_08215601837818347575856 - -#include -#include - -namespace zen -{ -//just some wrapper around a global variable representing the (logical) main application window -void setMainWindow(wxWindow* window); //set main window and enable "exit on frame delete" -bool mainWindowWasSet(); - - - - - - -//######################## implementation ######################## -inline -bool& refMainWndStatus() -{ - static bool status = false; //external linkage! - return status; -} - -inline -void setMainWindow(wxWindow* window) -{ - wxTheApp->SetTopWindow(window); - wxTheApp->SetExitOnFrameDelete(true); - - refMainWndStatus() = true; -} - -inline bool mainWindowWasSet() { return refMainWndStatus(); } -} - -#endif //APP_MAIN_H_08215601837818347575856 +// ***************************************************************************** +// * This file is part of the FreeFileSync project. It is distributed under * +// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 * +// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved * +// ***************************************************************************** + +#ifndef APP_MAIN_H_08215601837818347575856 +#define APP_MAIN_H_08215601837818347575856 + +#include +#include + +namespace zen +{ +//just some wrapper around a global variable representing the (logical) main application window +void setMainWindow(wxWindow* window); //set main window and enable "exit on frame delete" +bool mainWindowWasSet(); + + + + + + +//######################## implementation ######################## +inline +bool& refMainWndStatus() +{ + static bool status = false; //external linkage! + return status; +} + +inline +void setMainWindow(wxWindow* window) +{ + wxTheApp->SetTopWindow(window); + wxTheApp->SetExitOnFrameDelete(true); + + refMainWndStatus() = true; +} + +inline bool mainWindowWasSet() { return refMainWndStatus(); } +} + +#endif //APP_MAIN_H_08215601837818347575856 -- cgit