summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/RealtimeSync/main_dlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/RealtimeSync/main_dlg.cpp')
-rw-r--r--FreeFileSync/Source/RealtimeSync/main_dlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/FreeFileSync/Source/RealtimeSync/main_dlg.cpp b/FreeFileSync/Source/RealtimeSync/main_dlg.cpp
index 121f5486..a68cb742 100644
--- a/FreeFileSync/Source/RealtimeSync/main_dlg.cpp
+++ b/FreeFileSync/Source/RealtimeSync/main_dlg.cpp
@@ -1,6 +1,6 @@
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -22,13 +22,13 @@
#include "../lib/ffs_paths.h"
#ifdef ZEN_WIN
-#include <wx+/mouse_move_dlg.h>
+ #include <wx+/mouse_move_dlg.h>
#elif defined ZEN_LINUX
-#include <gtk/gtk.h>
+ #include <gtk/gtk.h>
#elif defined ZEN_MAC
-#include <ApplicationServices/ApplicationServices.h>
-#include <wx/app.h>
+ #include <ApplicationServices/ApplicationServices.h>
+ #include <wx/app.h>
#endif
using namespace zen;
@@ -422,9 +422,9 @@ void MainDialog::OnRemoveTopFolder(wxCommandEvent& event)
#ifdef ZEN_WIN
-static const size_t MAX_ADD_FOLDERS = 8;
+ static const size_t MAX_ADD_FOLDERS = 8;
#elif defined ZEN_LINUX || defined ZEN_MAC
-static const size_t MAX_ADD_FOLDERS = 6;
+ static const size_t MAX_ADD_FOLDERS = 6;
#endif
bgstack15