Fix documentation of {From,To}DIP() overloads taking int

They were mistakenly using wxSize (already documented just above).
This commit is contained in:
Vadim Zeitlin
2016-08-09 01:10:24 +02:00
parent 985ff1e26e
commit 1c4e20d870

View File

@@ -989,7 +989,7 @@ public:
static wxPoint FromDIP(const wxPoint& pt, const wxWindow* w); static wxPoint FromDIP(const wxPoint& pt, const wxWindow* w);
/// @overload /// @overload
static wxSize FromDIP(const wxSize& sz, const wxWindow* w); static wxSize FromDIP(int d, const wxWindow* w);
/** /**
@@ -1056,7 +1056,7 @@ public:
static wxPoint ToDIP(const wxPoint& pt, const wxWindow* w); static wxPoint ToDIP(const wxPoint& pt, const wxWindow* w);
/// @overload /// @overload
static wxSize ToDIP(const wxSize& sz, const wxWindow* w); static wxSize ToDIP(int d, const wxWindow* w);
/** /**
This functions returns the best acceptable minimal size for the window. This functions returns the best acceptable minimal size for the window.