summaryrefslogtreecommitdiff
path: root/library/resources.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/resources.h')
-rw-r--r--library/resources.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/resources.h b/library/resources.h
index 776fe785..691d5a6b 100644
--- a/library/resources.h
+++ b/library/resources.h
@@ -16,23 +16,23 @@
class GlobalResources
{
public:
- static const GlobalResources& getInstance();
+ static const GlobalResources& instance();
- const wxBitmap& getImageByName(const wxString& imageName) const;
+ const wxBitmap& getImage(const wxString& imageName) const;
//global image resource objects
wxAnimation* animationMoney;
wxAnimation* animationSync;
wxIcon* programIcon;
- void load() const; //loads bitmap resources on program startup: logical const!
-
private:
+ void load(); //loads bitmap resources on program startup
+
GlobalResources();
~GlobalResources();
//resource mapping
- mutable std::map<wxString, wxBitmap*> bitmapResource;
+ std::map<wxString, wxBitmap*> bitmapResource;
};
#endif // RESOURCES_H_INCLUDED
bgstack15