X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f0d3a2cc93915912ba879ec94d813043d7d60a36..690981ec8436ff3f4ac6649f7e54d004a78e820b:/include/wx/confbase.h diff --git a/include/wx/confbase.h b/include/wx/confbase.h index 5192df40db..91871da380 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -276,6 +276,12 @@ public: // we also have to provide specializations for other types which we want to // handle using the specialized DoWriteXXX() instead of the generic template // version below + bool Write(const wxString& key, char value) + { return DoWriteLong(key, value); } + + bool Write(const wxString& key, unsigned char value) + { return DoWriteLong(key, value); } + bool Write(const wxString& key, short value) { return DoWriteLong(key, value); }