summaryrefslogtreecommitdiff
path: root/library/resources.cpp
diff options
context:
space:
mode:
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