summaryrefslogtreecommitdiff
path: root/ui/tray_icon.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /ui/tray_icon.h
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'ui/tray_icon.h')
-rw-r--r--ui/tray_icon.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/tray_icon.h b/ui/tray_icon.h
index 5ca94903..866d79d5 100644
--- a/ui/tray_icon.h
+++ b/ui/tray_icon.h
@@ -8,6 +8,7 @@
#define TRAYICON_H_INCLUDED
#include <wx/event.h>
+#include <wx/image.h>
//show tray icon with progress during lifetime of this instance
//emits the following wxCommandEvent in case user double-clicks on tray icon or selects corresponding context menu item:
@@ -34,6 +35,7 @@ private:
wxString toolTipLast;
double fractionLast;
+ wxImage logo;
};
#endif // TRAYICON_H_INCLUDED
bgstack15