minor fix

git-svn-id: http://svn.osgeo.org/qgis/trunk@118 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2002-09-26 05:04:01 +00:00
parent f85435ce33
commit 87f69be03d
3 changed files with 7 additions and 6 deletions

View File

@ -27,6 +27,6 @@ void QgsRasterLayer::draw(QPainter * p, QRect * viewExtent)
{ {
} }
void QgsRasterLayer::identify(QgsRect * r) //void QgsRasterLayer::identify(QgsRect * r)
{ //{
} //}

View File

@ -32,7 +32,7 @@ Q_OBJECT
//! Destructor //! Destructor
~QgsRasterLayer(); ~QgsRasterLayer();
void draw(QPainter *p, QRect *viewExtent); void draw(QPainter *p, QRect *viewExtent);
void identify(QgsRect *r); //void identify(QgsRect *r);
}; };
#endif #endif

View File

@ -70,9 +70,10 @@ class QgsRect{
*/ */
QgsRect & operator=(const QgsRect &r1); QgsRect & operator=(const QgsRect &r1);
private: private:
double xmax;
double xmin; double xmin;
double ymax;
double ymin; double ymin;
double xmax;
double ymax;
}; };
#endif // QGSRECT_H #endif // QGSRECT_H