git-svn-id: http://svn.osgeo.org/qgis/trunk@9977 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jef 2009-01-16 21:08:35 +00:00
parent 5d6a1395d6
commit 7cd83173d5
6 changed files with 10 additions and 10 deletions

View File

@ -23,7 +23,7 @@ public:
//! Retrieve a pointer to a loaded plugin by id
QgsMapLayer * mapLayer(QString theLayerId);
//! Retrieve the mapLayers collection (mainly intended for use by projectio)
//! Retrieve the mapLayers collection (mainly intended for use by projection)
QMap<QString,QgsMapLayer*> & mapLayers();
/** Add a layer to the map of loaded layers

View File

@ -141,8 +141,8 @@ class QgisInterface : QObject
virtual QAction *actionMoveFeature() = 0;
virtual QAction *actionSplitFeatures() = 0;
virtual QAction *actionAddVertex() = 0;
virtual QAction *actionDelerteVertex() = 0;
virtual QAction *actioMoveVertex() = 0;
virtual QAction *actionDeleteVertex() = 0;
virtual QAction *actionMoveVertex() = 0;
virtual QAction *actionAddRing() = 0;
virtual QAction *actionAddIsland() = 0;
virtual QAction *actionEditSeparator2() = 0;

View File

@ -212,8 +212,8 @@ class QgisApp : public QMainWindow
QAction *actionMoveFeature() { return mActionMoveFeature; }
QAction *actionSplitFeatures() { return mActionSplitFeatures; }
QAction *actionAddVertex() { return mActionAddVertex; }
QAction *actionDelerteVertex() { return mActionDeleteVertex; }
QAction *actioMoveVertex() { return mActionMoveVertex; }
QAction *actionDeleteVertex() { return mActionDeleteVertex; }
QAction *actionMoveVertex() { return mActionMoveVertex; }
QAction *actionAddRing() { return mActionAddRing; }
QAction *actionAddIsland() { return mActionAddIsland; }
QAction *actionEditSeparator2() { return mActionEditSeparator2; }

View File

@ -200,8 +200,8 @@ QAction *QgisAppInterface::actionDeleteSelected() { return qgis->actionDeleteSel
QAction *QgisAppInterface::actionMoveFeature() { return qgis->actionMoveFeature(); }
QAction *QgisAppInterface::actionSplitFeatures() { return qgis->actionSplitFeatures(); }
QAction *QgisAppInterface::actionAddVertex() { return qgis->actionAddVertex(); }
QAction *QgisAppInterface::actionDelerteVertex() { return qgis->actionDelerteVertex(); }
QAction *QgisAppInterface::actioMoveVertex() { return qgis->actioMoveVertex(); }
QAction *QgisAppInterface::actionDeleteVertex() { return qgis->actionDeleteVertex(); }
QAction *QgisAppInterface::actionMoveVertex() { return qgis->actionMoveVertex(); }
QAction *QgisAppInterface::actionAddRing() { return qgis->actionAddRing(); }
QAction *QgisAppInterface::actionAddIsland() { return qgis->actionAddIsland(); }
QAction *QgisAppInterface::actionEditSeparator2() { return qgis->actionEditSeparator2(); }

View File

@ -159,8 +159,8 @@ class QgisAppInterface : public QgisInterface
virtual QAction *actionMoveFeature();
virtual QAction *actionSplitFeatures();
virtual QAction *actionAddVertex();
virtual QAction *actionDelerteVertex();
virtual QAction *actioMoveVertex();
virtual QAction *actionDeleteVertex();
virtual QAction *actionMoveVertex();
virtual QAction *actionAddRing();
virtual QAction *actionAddIsland();
virtual QAction *actionEditSeparator2();

View File

@ -33,7 +33,7 @@ QgsMapCanvasItem::QgsMapCanvasItem( QgsMapCanvas* mapCanvas )
QgsMapCanvasItem::~QgsMapCanvasItem()
{
update(); // shedule redraw of canvas
update(); // schedule redraw of canvas
}
void QgsMapCanvasItem::paint( QPainter * painter,