summaryrefslogtreecommitdiff
path: root/shared/app_main.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /shared/app_main.cpp
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'shared/app_main.cpp')
-rw-r--r--shared/app_main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/app_main.cpp b/shared/app_main.cpp
index 7225ba62..3d42212a 100644
--- a/shared/app_main.cpp
+++ b/shared/app_main.cpp
@@ -11,7 +11,7 @@
using namespace ffs3;
-bool AppMainWindow::mainWndAct = false;
+bool AppMainWindow::mainWndActive = false;
void ffs3::AppMainWindow::setMainWindow(wxWindow* window)
@@ -19,11 +19,11 @@ void ffs3::AppMainWindow::setMainWindow(wxWindow* window)
wxTheApp->SetTopWindow(window);
wxTheApp->SetExitOnFrameDelete(true);
- mainWndAct = true;
+ mainWndActive = true;
}
bool AppMainWindow::mainWindowWasSet()
{
- return mainWndAct;
+ return mainWndActive;
}
bgstack15