Skip to content

Commit 434df03

Browse files
author
jef
committed
fix #3611
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15483 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 467d684 commit 434df03

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

python/core/qgsrect.sip

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ class QgsRectangle
3939
void setMinimal();
4040
//! Get the x maximum value (right side of rectangle)
4141
double xMaximum() const;
42-
//! Get the x maximum value (right side of rectangle)
43-
double xMinimum() const;
4442
//! Get the x minimum value (left side of rectangle)
45-
double yMaximum() const;
43+
double xMinimum() const;
4644
//! Get the y maximum value (top side of rectangle)
45+
double yMaximum() const;
46+
//! Get the y minimum value (bottom side of rectangle)
4747
double yMinimum() const;
4848
//! Normalize the rectangle so it has non-negative width/height
4949
void normalize();

src/core/qgsrectangle.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ class CORE_EXPORT QgsRectangle
6262
void setMinimal();
6363
//! Get the x maximum value (right side of rectangle)
6464
double xMaximum() const;
65-
//! Get the x maximum value (right side of rectangle)
66-
double xMinimum() const;
6765
//! Get the x minimum value (left side of rectangle)
68-
double yMaximum() const;
66+
double xMinimum() const;
6967
//! Get the y maximum value (top side of rectangle)
68+
double yMaximum() const;
69+
//! Get the y minimum value (bottom side of rectangle)
7070
double yMinimum() const;
7171
//! Normalize the rectangle so it has non-negative width/height
7272
void normalize();

0 commit comments

Comments
 (0)