X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8429bec1e8e3fcb7d071bc3ef7c665c484b5fdc1..650368d057896c5bf6b1f2294766e92b7dbb7f20:/src/gtk/region.cpp diff --git a/src/gtk/region.cpp b/src/gtk/region.cpp index 274e53b35d..a01289855b 100644 --- a/src/gtk/region.cpp +++ b/src/gtk/region.cpp @@ -2,9 +2,8 @@ // Name: region.cpp // Purpose: // Author: Robert Roebling -// Created: 01/02/98 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -115,6 +114,16 @@ wxRegion::~wxRegion(void) { } +bool wxRegion::operator == ( const wxRegion& region ) +{ + return m_refData == region.m_refData; +} + +bool wxRegion::operator != ( const wxRegion& region ) +{ + return m_refData != region.m_refData; +} + void wxRegion::Clear(void) { UnRef();