From 099c2c7d7f62010a9d5fbc648e5166930c4d18cd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 18 Mar 2009 10:04:20 +0000 Subject: [PATCH] correct typo in SetAltExtensions() method (re-closes #10570) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59601 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/image.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/image.h b/include/wx/image.h index 933f596c7b..49ea7b2229 100644 --- a/include/wx/image.h +++ b/include/wx/image.h @@ -108,7 +108,7 @@ public: void SetName(const wxString& name) { m_name = name; } void SetExtension(const wxString& ext) { m_extension = ext; } - void SetAlExtensions(const wxArrayString& exts) { m_altExtensions = exts; } + void SetAltExtensions(const wxArrayString& exts) { m_altExtensions = exts; } void SetType(wxBitmapType type) { m_type = type; } void SetMimeType(const wxString& type) { m_mime = type; } const wxString& GetName() const { return m_name; } -- 2.45.2