summaryrefslogtreecommitdiff
path: root/library/resources.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/resources.h')
-rw-r--r--library/resources.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/library/resources.h b/library/resources.h
index d08ce0ce..4eec185e 100644
--- a/library/resources.h
+++ b/library/resources.h
@@ -6,7 +6,6 @@
#include <wx/string.h>
#include <map>
-using namespace std;
class GlobalResources
{
@@ -92,6 +91,12 @@ public:
wxBitmap* bitmapFilter;
wxBitmap* bitmapBatch;
wxBitmap* bitmapBatchSmall;
+ wxBitmap* bitmapMoveUp;
+ wxBitmap* bitmapMoveDown;
+ wxBitmap* bitmapCheckBoxTrue;
+ wxBitmap* bitmapCheckBoxFalse;
+ wxBitmap* bitmapSettings;
+ wxBitmap* bitmapSettingsSmall;
wxAnimation* animationMoney;
wxAnimation* animationSync;
@@ -100,7 +105,7 @@ public:
private:
//resource mapping
- map<wxString, wxBitmap*> bitmapResource;
+ std::map<wxString, wxBitmap*> bitmapResource;
};
bgstack15