File tree 6 files changed +10
-10
lines changed
6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public:
23
23
//! Retrieve a pointer to a loaded plugin by id
24
24
QgsMapLayer * mapLayer(QString theLayerId);
25
25
26
- //! Retrieve the mapLayers collection (mainly intended for use by projectio )
26
+ //! Retrieve the mapLayers collection (mainly intended for use by projection )
27
27
QMap<QString,QgsMapLayer*> & mapLayers();
28
28
29
29
/** Add a layer to the map of loaded layers
Original file line number Diff line number Diff line change @@ -141,8 +141,8 @@ class QgisInterface : QObject
141
141
virtual QAction *actionMoveFeature() = 0;
142
142
virtual QAction *actionSplitFeatures() = 0;
143
143
virtual QAction *actionAddVertex() = 0;
144
- virtual QAction *actionDelerteVertex () = 0;
145
- virtual QAction *actioMoveVertex () = 0;
144
+ virtual QAction *actionDeleteVertex () = 0;
145
+ virtual QAction *actionMoveVertex () = 0;
146
146
virtual QAction *actionAddRing() = 0;
147
147
virtual QAction *actionAddIsland() = 0;
148
148
virtual QAction *actionEditSeparator2() = 0;
Original file line number Diff line number Diff line change @@ -212,8 +212,8 @@ class QgisApp : public QMainWindow
212
212
QAction *actionMoveFeature () { return mActionMoveFeature ; }
213
213
QAction *actionSplitFeatures () { return mActionSplitFeatures ; }
214
214
QAction *actionAddVertex () { return mActionAddVertex ; }
215
- QAction *actionDelerteVertex () { return mActionDeleteVertex ; }
216
- QAction *actioMoveVertex () { return mActionMoveVertex ; }
215
+ QAction *actionDeleteVertex () { return mActionDeleteVertex ; }
216
+ QAction *actionMoveVertex () { return mActionMoveVertex ; }
217
217
QAction *actionAddRing () { return mActionAddRing ; }
218
218
QAction *actionAddIsland () { return mActionAddIsland ; }
219
219
QAction *actionEditSeparator2 () { return mActionEditSeparator2 ; }
Original file line number Diff line number Diff line change @@ -200,8 +200,8 @@ QAction *QgisAppInterface::actionDeleteSelected() { return qgis->actionDeleteSel
200
200
QAction *QgisAppInterface::actionMoveFeature () { return qgis->actionMoveFeature (); }
201
201
QAction *QgisAppInterface::actionSplitFeatures () { return qgis->actionSplitFeatures (); }
202
202
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 (); }
205
205
QAction *QgisAppInterface::actionAddRing () { return qgis->actionAddRing (); }
206
206
QAction *QgisAppInterface::actionAddIsland () { return qgis->actionAddIsland (); }
207
207
QAction *QgisAppInterface::actionEditSeparator2 () { return qgis->actionEditSeparator2 (); }
Original file line number Diff line number Diff line change @@ -159,8 +159,8 @@ class QgisAppInterface : public QgisInterface
159
159
virtual QAction *actionMoveFeature ();
160
160
virtual QAction *actionSplitFeatures ();
161
161
virtual QAction *actionAddVertex ();
162
- virtual QAction *actionDelerteVertex ();
163
- virtual QAction *actioMoveVertex ();
162
+ virtual QAction *actionDeleteVertex ();
163
+ virtual QAction *actionMoveVertex ();
164
164
virtual QAction *actionAddRing ();
165
165
virtual QAction *actionAddIsland ();
166
166
virtual QAction *actionEditSeparator2 ();
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ QgsMapCanvasItem::QgsMapCanvasItem( QgsMapCanvas* mapCanvas )
33
33
34
34
QgsMapCanvasItem::~QgsMapCanvasItem ()
35
35
{
36
- update (); // shedule redraw of canvas
36
+ update (); // schedule redraw of canvas
37
37
}
38
38
39
39
void QgsMapCanvasItem::paint ( QPainter * painter,
You can’t perform that action at this time.
0 commit comments