From 6b5bdf3764b5a006bcb144f9a51dd6a21f57f527 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 10 Mar 2012 14:26:15 +0000 Subject: [PATCH] Fix wxDataObject::GetFormatCount() signature in the documentation. It should be const but wasn't. Closes #14080. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70864 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/dataobj.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/dataobj.h b/interface/wx/dataobj.h index 4ba4e3cfff..31822cf8b4 100644 --- a/interface/wx/dataobj.h +++ b/interface/wx/dataobj.h @@ -747,7 +747,7 @@ public: Returns 1 under other platforms (e.g. wxMSW) or when building in ANSI mode (@c wxUSE_UNICODE==0). */ - virtual size_t GetFormatCount(Direction dir = Get); + virtual size_t GetFormatCount(Direction dir = Get) const; /** Returns the preferred format supported by this object.