summaryrefslogtreecommitdiff
path: root/library/resources.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
commit222024f07e505617aec93dc4837be2be27d18856 (patch)
treec40f400baa6cf1d047205359f80c2b8f74a2b507 /library/resources.h
parent1.12 (diff)
downloadFreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.gz
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.bz2
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.zip
1.13
Diffstat (limited to 'library/resources.h')
-rw-r--r--library/resources.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/library/resources.h b/library/resources.h
index c91b5cb7..d08ce0ce 100644
--- a/library/resources.h
+++ b/library/resources.h
@@ -16,11 +16,11 @@ public:
void load();
- static const wxChar fileNameSeparator;
+ static const wxChar FILE_NAME_SEPARATOR;
//language dependent global variables: need to be initialized by CustomLocale on program startup and language switch
- static const wxChar* decimalPoint;
- static const wxChar* thousandsSeparator;
+ static const wxChar* DECIMAL_POINT;
+ static const wxChar* THOUSANDS_SEPARATOR;
//image resource objects
wxBitmap* bitmapArrowLeft;
@@ -85,6 +85,13 @@ public:
wxBitmap* bitmapRemoveFolderPairD;
wxBitmap* bitmapLink;
wxBitmap* bitmapBackground;
+ wxBitmap* bitmapCompareSmall;
+ wxBitmap* bitmapSyncSmall;
+ wxBitmap* bitmapClockSmall;
+ wxBitmap* bitmapClock;
+ wxBitmap* bitmapFilter;
+ wxBitmap* bitmapBatch;
+ wxBitmap* bitmapBatchSmall;
wxAnimation* animationMoney;
wxAnimation* animationSync;
bgstack15