summaryrefslogtreecommitdiff
path: root/ui/sync_cfg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/sync_cfg.cpp')
-rw-r--r--ui/sync_cfg.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ui/sync_cfg.cpp b/ui/sync_cfg.cpp
index d85e2bcf..d19520be 100644
--- a/ui/sync_cfg.cpp
+++ b/ui/sync_cfg.cpp
@@ -5,17 +5,17 @@
// **************************************************************************
#include "sync_cfg.h"
-#include "../library/resources.h"
-#include "../shared/dir_name.h"
+#include "../lib/resources.h"
+#include "../lib/dir_name.h"
#include <wx/wupdlock.h>
-#include "../shared/mouse_move_dlg.h"
-#include "../shared/string_conv.h"
-#include "../shared/dir_picker_i18n.h"
+#include <wx+/mouse_move_dlg.h>
+#include <wx+/string_conv.h>
+#include <wx+/dir_picker.h>
#include "gui_generated.h"
#include <memory>
-#include "../shared/wx_choice_enum.h"
-#include "../shared/dir_name.h"
-#include "../shared/image_tools.h"
+#include <wx+/choice_enum.h>
+#include "../lib/dir_name.h"
+#include <wx+/image_tools.h>
using namespace zen;
using namespace xmlAccess;
bgstack15