From 3ea9aa8f0eaccaa3059d56c1a2fad9c815c43693 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 12 Dec 2004 10:33:51 +0000 Subject: [PATCH] removed extra class qualifier from inline method git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30943 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/gdicmn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/gdicmn.h b/include/wx/gdicmn.h index d47960755e..10e7b6b5ee 100644 --- a/include/wx/gdicmn.h +++ b/include/wx/gdicmn.h @@ -418,7 +418,7 @@ public: // these are like Union() but don't ignore empty rectangles wxRect operator+(const wxRect& rect) const; - wxRect& wxRect::operator+=(const wxRect& rect) + wxRect& operator+=(const wxRect& rect) { *this = *this + rect; return *this; -- 2.45.2