From 5367e67d63cf12c1344c77e4060668d063a0a872 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Thu, 4 Nov 1999 09:27:36 +0000 Subject: [PATCH] added operator[](unsigned int) const -- testing it now on Linux/axp, solaris, linux/i386 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4351 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/string.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/string.h b/include/wx/string.h index cc74023016..d9d59a835c 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -377,6 +377,9 @@ public: // operator version of GetChar wxChar operator[](int n) const { ASSERT_VALID_INDEX( n ); return m_pchData[n]; } + // operator version of GetChar + wxChar operator[](unsigned int n) const + { ASSERT_VALID_INDEX( n ); return m_pchData[n]; } // operator version of GetWritableChar wxChar& operator[](size_t n) { ASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; } -- 2.47.2