Skip to content

Commit 92459f9

Browse files
author
jef
committed
fix #1490
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9977 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 4300f14 commit 92459f9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

python/core/qgsmaplayerregistry.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public:
2323
//! Retrieve a pointer to a loaded plugin by id
2424
QgsMapLayer * mapLayer(QString theLayerId);
2525

26-
//! Retrieve the mapLayers collection (mainly intended for use by projectio)
26+
//! Retrieve the mapLayers collection (mainly intended for use by projection)
2727
QMap<QString,QgsMapLayer*> & mapLayers();
2828

2929
/** Add a layer to the map of loaded layers

python/gui/qgisinterface.sip

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ class QgisInterface : QObject
141141
virtual QAction *actionMoveFeature() = 0;
142142
virtual QAction *actionSplitFeatures() = 0;
143143
virtual QAction *actionAddVertex() = 0;
144-
virtual QAction *actionDelerteVertex() = 0;
145-
virtual QAction *actioMoveVertex() = 0;
144+
virtual QAction *actionDeleteVertex() = 0;
145+
virtual QAction *actionMoveVertex() = 0;
146146
virtual QAction *actionAddRing() = 0;
147147
virtual QAction *actionAddIsland() = 0;
148148
virtual QAction *actionEditSeparator2() = 0;

src/app/qgisapp.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ class QgisApp : public QMainWindow
212212
QAction *actionMoveFeature() { return mActionMoveFeature; }
213213
QAction *actionSplitFeatures() { return mActionSplitFeatures; }
214214
QAction *actionAddVertex() { return mActionAddVertex; }
215-
QAction *actionDelerteVertex() { return mActionDeleteVertex; }
216-
QAction *actioMoveVertex() { return mActionMoveVertex; }
215+
QAction *actionDeleteVertex() { return mActionDeleteVertex; }
216+
QAction *actionMoveVertex() { return mActionMoveVertex; }
217217
QAction *actionAddRing() { return mActionAddRing; }
218218
QAction *actionAddIsland() { return mActionAddIsland; }
219219
QAction *actionEditSeparator2() { return mActionEditSeparator2; }

src/app/qgisappinterface.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ QAction *QgisAppInterface::actionDeleteSelected() { return qgis->actionDeleteSel
200200
QAction *QgisAppInterface::actionMoveFeature() { return qgis->actionMoveFeature(); }
201201
QAction *QgisAppInterface::actionSplitFeatures() { return qgis->actionSplitFeatures(); }
202202
QAction *QgisAppInterface::actionAddVertex() { return qgis->actionAddVertex(); }
203-
QAction *QgisAppInterface::actionDelerteVertex() { return qgis->actionDelerteVertex(); }
204-
QAction *QgisAppInterface::actioMoveVertex() { return qgis->actioMoveVertex(); }
203+
QAction *QgisAppInterface::actionDeleteVertex() { return qgis->actionDeleteVertex(); }
204+
QAction *QgisAppInterface::actionMoveVertex() { return qgis->actionMoveVertex(); }
205205
QAction *QgisAppInterface::actionAddRing() { return qgis->actionAddRing(); }
206206
QAction *QgisAppInterface::actionAddIsland() { return qgis->actionAddIsland(); }
207207
QAction *QgisAppInterface::actionEditSeparator2() { return qgis->actionEditSeparator2(); }

src/app/qgisappinterface.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ class QgisAppInterface : public QgisInterface
159159
virtual QAction *actionMoveFeature();
160160
virtual QAction *actionSplitFeatures();
161161
virtual QAction *actionAddVertex();
162-
virtual QAction *actionDelerteVertex();
163-
virtual QAction *actioMoveVertex();
162+
virtual QAction *actionDeleteVertex();
163+
virtual QAction *actionMoveVertex();
164164
virtual QAction *actionAddRing();
165165
virtual QAction *actionAddIsland();
166166
virtual QAction *actionEditSeparator2();

src/gui/qgsmapcanvasitem.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ QgsMapCanvasItem::QgsMapCanvasItem( QgsMapCanvas* mapCanvas )
3333

3434
QgsMapCanvasItem::~QgsMapCanvasItem()
3535
{
36-
update(); // shedule redraw of canvas
36+
update(); // schedule redraw of canvas
3737
}
3838

3939
void QgsMapCanvasItem::paint( QPainter * painter,

0 commit comments

Comments
 (0)