summaryrefslogtreecommitdiff
path: root/library/resources.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/resources.h')
-rw-r--r--library/resources.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/library/resources.h b/library/resources.h
index de70198f..5f97e582 100644
--- a/library/resources.h
+++ b/library/resources.h
@@ -22,7 +22,7 @@ public:
//command line parameters
static const wxChar* paramCompare;
- static const wxChar* paramCfg;
+ static const wxChar* paramSync;
static const wxChar* paramInclude;
static const wxChar* paramExclude;
static const wxChar* paramContinueError;
@@ -33,12 +33,15 @@ public:
static const wxChar* valueContent;
//image resource objects
- static wxBitmap* bitmapLeftArrow;
- static wxBitmap* bitmapRightArrow;
- static wxBitmap* bitmapNoArrow;
+ static wxBitmap* bitmapArrowLeft;
+ static wxBitmap* bitmapArrowRight;
+ static wxBitmap* bitmapArrowLeftCr;
+ static wxBitmap* bitmapArrowRightCr;
+ static wxBitmap* bitmapArrowNone;
static wxBitmap* bitmapStartSync;
static wxBitmap* bitmapStartSyncDis;
- static wxBitmap* bitmapDelete;
+ static wxBitmap* bitmapDeleteLeft;
+ static wxBitmap* bitmapDeleteRight;
static wxBitmap* bitmapEmail;
static wxBitmap* bitmapAbout;
static wxBitmap* bitmapWebsite;
bgstack15