Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #1490
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9977 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jan 16, 2009
1 parent 4300f14 commit 92459f9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsmaplayerregistry.sip
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions python/gui/qgisinterface.sip
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgisapp.h
Expand Up @@ -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; }
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgisappinterface.cpp
Expand Up @@ -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(); }
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgisappinterface.h
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsmapcanvasitem.cpp
Expand Up @@ -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,
Expand Down

0 comments on commit 92459f9

Please sign in to comment.