Skip to content

Commit

Permalink
fix #3611
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@15483 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Mar 14, 2011
1 parent 0ee8c4b commit 7054a22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions python/core/qgsrect.sip
Expand Up @@ -39,11 +39,11 @@ class QgsRectangle
void setMinimal();
//! Get the x maximum value (right side of rectangle)
double xMaximum() const;
//! Get the x maximum value (right side of rectangle)
double xMinimum() const;
//! Get the x minimum value (left side of rectangle)
double yMaximum() const;
double xMinimum() const;
//! Get the y maximum value (top side of rectangle)
double yMaximum() const;
//! Get the y minimum value (bottom side of rectangle)
double yMinimum() const;
//! Normalize the rectangle so it has non-negative width/height
void normalize();
Expand Down
6 changes: 3 additions & 3 deletions src/core/qgsrectangle.h
Expand Up @@ -62,11 +62,11 @@ class CORE_EXPORT QgsRectangle
void setMinimal();
//! Get the x maximum value (right side of rectangle)
double xMaximum() const;
//! Get the x maximum value (right side of rectangle)
double xMinimum() const;
//! Get the x minimum value (left side of rectangle)
double yMaximum() const;
double xMinimum() const;
//! Get the y maximum value (top side of rectangle)
double yMaximum() const;
//! Get the y minimum value (bottom side of rectangle)
double yMinimum() const;
//! Normalize the rectangle so it has non-negative width/height
void normalize();
Expand Down

0 comments on commit 7054a22

Please sign in to comment.