]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
Resize fine tuning
[wxWidgets.git] / include / wx / gdicmn.h
index fe995f30a5817d2d029ebec659de6716fd7bc451..36a892127d14545a3b3a7de3e44cf47562b30ce4 100644 (file)
@@ -353,11 +353,13 @@ extern void WXDLLEXPORT wxSetCursor(const wxCursor& cursor);
 
 class WXDLLEXPORT wxResourceCache: public wxList
 {
-  DECLARE_DYNAMIC_CLASS(wxResourceCache)
- public:
-   wxResourceCache();
-   wxResourceCache(const unsigned int the_key_type);
-   ~wxResourceCache();
+public:
+    wxResourceCache() { }
+    wxResourceCache(const unsigned int keyType) : wxList(keyType) { }
+    ~wxResourceCache();
+
+private:
+    DECLARE_DYNAMIC_CLASS(wxResourceCache)
 };
 
 #endif