From: Vadim Zeitlin Date: Sat, 8 Dec 2012 13:47:45 +0000 (+0000) Subject: Document wxXmlResourceHandler::GetFloat(). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/548b4ce1ce178584ba3ba43e246e09d449204a81?hp=223862cbd39bf964c146c90cb055c5409c07d07d Document wxXmlResourceHandler::GetFloat(). Closes #14879. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73151 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/xrc/xmlres.h b/interface/wx/xrc/xmlres.h index bd676064a6..4098705329 100644 --- a/interface/wx/xrc/xmlres.h +++ b/interface/wx/xrc/xmlres.h @@ -642,6 +642,11 @@ protected: */ long GetLong(const wxString& param, long defaultv = 0); + /** + Gets a float value from the parameter. + */ + float GetFloat(const wxString& param, float defaultv = 0); + /** Returns the resource name. */