summaryrefslogtreecommitdiff
path: root/library/resources.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
commitb338e29fd3eaf700f8c8360aa0310048ba941d54 (patch)
tree122f8ef3790d12cd10275ef7453a9e8053322d78 /library/resources.cpp
parent3.18 (diff)
downloadFreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.gz
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.bz2
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.zip
3.19
Diffstat (limited to 'library/resources.cpp')
-rw-r--r--library/resources.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/resources.cpp b/library/resources.cpp
index abdfdf51..179033a7 100644
--- a/library/resources.cpp
+++ b/library/resources.cpp
@@ -11,7 +11,6 @@
#include <wx/icon.h>
#include <wx/mstream.h>
#include "../shared/string_conv.h"
-#include "../shared/system_constants.h"
#include <memory>
#include "../shared/standard_paths.h"
@@ -102,9 +101,6 @@ void GlobalResources::load()
//for compatibility it seems we need to stick with a "real" icon
*programIcon = wxIcon(wxT("A_PROGRAM_ICON"));
#else
- //#include "FreeFileSync.xpm"
- //*programIcon = wxIcon(FreeFileSync_xpm);
-
//use big logo bitmap for better quality
programIcon->CopyFromBitmap(getImage(wxT("FreeFileSync.png")));
#endif
bgstack15