Skip to content

Commit 3890cf3

Browse files
author
jef
committed
fix common typo
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9140 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 9706798 commit 3890cf3

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/app/composer/qgscomposer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ void QgsComposer::on_mActionPrint_activated( void )
422422
// << /PageSize [ %d %d ] >> setpagedevice
423423
// %d %d is width and height in points
424424

425-
// WARNING: If QCanvasView recieves repaint signal during the printing
425+
// WARNING: If QCanvasView receives repaint signal during the printing
426426
// (e.g. covered by QPrinter::setup dialog) it breaks somehow drawing of QCanvas items
427427
// (for example not all features in the map are drawn.
428428
// I don't know how to stop temporarily updating, (I don't want to reimplement

src/app/composer/qgscomposer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ class QSizeGrip;
4242
/** \ingroup MapComposer
4343
* \brief A gui for composing a printable map.
4444
* The constructor creates empty composer, without compositions and mFirstTime set to true.
45-
* - if signal projectRead() is recieved all old compositions are deleted and
45+
* - if signal projectRead() is received all old compositions are deleted and
4646
* - if the composition exists in project it is created from project settings (mFirstTime set to false)
4747
* - if the composition does not exist in project
4848
* - if the composer is visible new default composition is created (mFirstTime set to false)
4949
* - if the composer is not visible the composer is left empty (mFirstTime set to true)
50-
* - if signal newProject() is recieved all old compositions are deleted and
50+
* - if signal newProject() is received all old compositions are deleted and
5151
* - if the composer is visible a new default composition is created (mFirstTime set to false)
5252
* - if the composer is not visible the composer is left empty (mFirstTime set to true)
5353
*

src/core/sqlite3/sqlite3.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3986,7 +3986,7 @@ extern "C"
39863986
** be deallocated after sqlite3_result_value() returns without harm.
39873987
**
39883988
** {U16491} These routines are called from within the different thread
3989-
** than the one containing the application-defined function that recieved
3989+
** than the one containing the application-defined function that received
39903990
** the [sqlite3_context] pointer, the results are undefined.
39913991
*/
39923992
SQLITE_API void sqlite3_result_blob( sqlite3_context*, const void*, int, void( * )( void* ) );

src/core/sqlite3/sqlite3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3620,7 +3620,7 @@ extern "C"
36203620
** be deallocated after sqlite3_result_value() returns without harm.
36213621
**
36223622
** {U16491} These routines are called from within the different thread
3623-
** than the one containing the application-defined function that recieved
3623+
** than the one containing the application-defined function that received
36243624
** the [sqlite3_context] pointer, the results are undefined.
36253625
*/
36263626
void sqlite3_result_blob( sqlite3_context*, const void*, int, void( * )( void* ) );

src/plugins/grass/qgsgrassedit.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@ void QgsGrassEdit::startTool( int tool )
13101310
Vect_reset_line( mEditPoints );
13111311
mSelectedLine = 0;
13121312

1313-
// TODO: mTool != NEW_LINE is a hack for lines until more buttons can be recieved
1313+
// TODO: mTool != NEW_LINE is a hack for lines until more buttons can be received
13141314
if ( mAttributes && mTool != QgsGrassEdit::NEW_LINE && mTool != QgsGrassEdit::NEW_BOUNDARY )
13151315
{
13161316
delete mAttributes;

src/plugins/grass/qgsgrassmapcalc.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ class QgsGrassMapcalc: public QMainWindow, private Ui::QgsGrassMapcalcBase,
9393
bool inputRegion( struct Cell_head *window, bool all );
9494
QStringList output( int type );
9595

96-
/** \brief recieves contentsMousePressEvent from view */
96+
/** \brief receives contentsMousePressEvent from view */
9797
void contentsMousePressEvent( QMouseEvent* );
9898

99-
/** \brief recieves contentsMouseReleaseEvent from view */
99+
/** \brief receives contentsMouseReleaseEvent from view */
100100
void contentsMouseReleaseEvent( QMouseEvent* );
101101

102-
/** \brief recieves contentsMouseMoveEvent from view */
102+
/** \brief receives contentsMouseMoveEvent from view */
103103
void contentsMouseMoveEvent( QMouseEvent* );
104104

105105
void keyPressEvent( QKeyEvent * e );

0 commit comments

Comments
 (0)