From d298f18ffb4bd0bd758b10f34c9e01cd119d1365 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 26 Jul 2011 21:37:20 +0000 Subject: [PATCH] Mention wxGTK wxAnimation implementation limitations in the docs. The native GTK implementation doesn't provide information about the frames count nor access to individual frames. See #13365. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/animate.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface/wx/animate.h b/interface/wx/animate.h index 5b4e5b5cde..19716e2c99 100644 --- a/interface/wx/animate.h +++ b/interface/wx/animate.h @@ -228,11 +228,17 @@ public: /** Returns the i-th frame as a wxImage. + + This method is not implemented in the native wxGTK implementation of + this class and always returns an invalid image there. */ virtual wxImage GetFrame(unsigned int i) const; /** Returns the number of frames for this animation. + + This method is not implemented in the native wxGTK implementation of + this class and always returns 0 there. */ virtual unsigned int GetFrameCount() const; -- 2.45.2