summaryrefslogtreecommitdiff
path: root/ui/tray_icon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tray_icon.cpp')
-rw-r--r--ui/tray_icon.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/tray_icon.cpp b/ui/tray_icon.cpp
index 96ae47e6..5e3fa5cb 100644
--- a/ui/tray_icon.cpp
+++ b/ui/tray_icon.cpp
@@ -5,15 +5,14 @@
// **************************************************************************
#include "tray_icon.h"
-#include "../library/resources.h"
+#include "../lib/resources.h"
#include "small_dlgs.h"
-#include "../shared/i18n.h"
#include <wx/taskbar.h>
#include <cmath>
#include <wx/image.h>
#include <wx/menu.h>
#include <wx/icon.h> //req. by Linux
-#include "../shared/image_tools.h"
+#include <wx+/image_tools.h>
const wxEventType FFS_REQUEST_RESUME_TRAY_EVENT = wxNewEventType();
bgstack15