From c2fa4af42353b63d0a35268fef5ded23fa00825b Mon Sep 17 00:00:00 2001
From: Stefan Csomor <csomor@advancedconcepts.ch>
Date: Sun, 13 Apr 2003 11:55:25 +0000
Subject: [PATCH] implemented constructor for rect from point and size

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 include/wx/geometry.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/include/wx/geometry.h b/include/wx/geometry.h
index 3e18b6b025..7f1bc382a7 100644
--- a/include/wx/geometry.h
+++ b/include/wx/geometry.h
@@ -767,6 +767,14 @@ inline wxRect2DInt::wxRect2DInt( const wxPoint2DInt &a , const wxPoint2DInt &b)
     m_height = abs( a.m_y - b.m_y );
 }
 
+inline wxRect2DInt::wxRect2DInt( const wxPoint2DInt& pos, const wxSize& size)
+{
+    m_x = pos.m_x;
+    m_y = pos.m_y;
+    m_width = size.x;
+    m_height = size.y;
+}
+
 inline bool wxRect2DInt::operator == (const wxRect2DInt& rect) const
 { 
     return (m_x==rect.m_x && m_y==rect.m_y && 
-- 
2.47.2