diff --git a/include/wx/osx/dvrenderers.h b/include/wx/osx/dvrenderers.h index a854a3f112..98c6d145b0 100644 --- a/include/wx/osx/dvrenderers.h +++ b/include/wx/osx/dvrenderers.h @@ -87,6 +87,9 @@ public: virtual void OSXOnCellChanged(NSObject *value, const wxDataViewItem& item, unsigned col) wxOVERRIDE; +#if wxUSE_ACCESSIBILITY + virtual wxString GetAccessibleDescription() const wxOVERRIDE { return {}; } +#endif // wxUSE_ACCESSIBILITY private: #if wxUSE_MARKUP && wxOSX_USE_COCOA @@ -112,6 +115,10 @@ public: virtual bool MacRender() wxOVERRIDE; +#if wxUSE_ACCESSIBILITY + virtual wxString GetAccessibleDescription() const wxOVERRIDE { return {}; } +#endif // wxUSE_ACCESSIBILITY + private: wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer); }; @@ -180,6 +187,10 @@ public: const wxDataViewItem& item, unsigned col) wxOVERRIDE; +#if wxUSE_ACCESSIBILITY + virtual wxString GetAccessibleDescription() const wxOVERRIDE { return {}; } +#endif // wxUSE_ACCESSIBILITY + private: wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer); }; @@ -212,6 +223,10 @@ public: const wxDataViewItem& item, unsigned col) wxOVERRIDE; +#if wxUSE_ACCESSIBILITY + virtual wxString GetAccessibleDescription() const wxOVERRIDE { return {}; } +#endif // wxUSE_ACCESSIBILITY + private: bool m_allow3rdStateForUser; @@ -265,6 +280,9 @@ public: virtual void OSXOnCellChanged(NSObject *value, const wxDataViewItem& item, unsigned col) wxOVERRIDE; +#if wxUSE_ACCESSIBILITY + virtual wxString GetAccessibleDescription() const wxOVERRIDE { return {}; } +#endif // wxUSE_ACCESSIBILITY private: wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer); @@ -289,6 +307,10 @@ public: const wxDataViewItem& item, unsigned col) wxOVERRIDE; +#if wxUSE_ACCESSIBILITY + virtual wxString GetAccessibleDescription() const wxOVERRIDE { return {}; } +#endif // wxUSE_ACCESSIBILITY + private: wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer); };