Skip to content

Commit

Permalink
fix common typo
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9140 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Aug 23, 2008
1 parent 9706798 commit 3890cf3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/app/composer/qgscomposer.cpp
Expand Up @@ -422,7 +422,7 @@ void QgsComposer::on_mActionPrint_activated( void )
// << /PageSize [ %d %d ] >> setpagedevice
// %d %d is width and height in points

// WARNING: If QCanvasView recieves repaint signal during the printing
// WARNING: If QCanvasView receives repaint signal during the printing
// (e.g. covered by QPrinter::setup dialog) it breaks somehow drawing of QCanvas items
// (for example not all features in the map are drawn.
// I don't know how to stop temporarily updating, (I don't want to reimplement
Expand Down
4 changes: 2 additions & 2 deletions src/app/composer/qgscomposer.h
Expand Up @@ -42,12 +42,12 @@ class QSizeGrip;
/** \ingroup MapComposer
* \brief A gui for composing a printable map.
* The constructor creates empty composer, without compositions and mFirstTime set to true.
* - if signal projectRead() is recieved all old compositions are deleted and
* - if signal projectRead() is received all old compositions are deleted and
* - if the composition exists in project it is created from project settings (mFirstTime set to false)
* - if the composition does not exist in project
* - if the composer is visible new default composition is created (mFirstTime set to false)
* - if the composer is not visible the composer is left empty (mFirstTime set to true)
* - if signal newProject() is recieved all old compositions are deleted and
* - if signal newProject() is received all old compositions are deleted and
* - if the composer is visible a new default composition is created (mFirstTime set to false)
* - if the composer is not visible the composer is left empty (mFirstTime set to true)
*
Expand Down
2 changes: 1 addition & 1 deletion src/core/sqlite3/sqlite3.c
Expand Up @@ -3986,7 +3986,7 @@ extern "C"
** be deallocated after sqlite3_result_value() returns without harm.
**
** {U16491} These routines are called from within the different thread
** than the one containing the application-defined function that recieved
** than the one containing the application-defined function that received
** the [sqlite3_context] pointer, the results are undefined.
*/
SQLITE_API void sqlite3_result_blob( sqlite3_context*, const void*, int, void( * )( void* ) );
Expand Down
2 changes: 1 addition & 1 deletion src/core/sqlite3/sqlite3.h
Expand Up @@ -3620,7 +3620,7 @@ extern "C"
** be deallocated after sqlite3_result_value() returns without harm.
**
** {U16491} These routines are called from within the different thread
** than the one containing the application-defined function that recieved
** than the one containing the application-defined function that received
** the [sqlite3_context] pointer, the results are undefined.
*/
void sqlite3_result_blob( sqlite3_context*, const void*, int, void( * )( void* ) );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassedit.cpp
Expand Up @@ -1310,7 +1310,7 @@ void QgsGrassEdit::startTool( int tool )
Vect_reset_line( mEditPoints );
mSelectedLine = 0;

// TODO: mTool != NEW_LINE is a hack for lines until more buttons can be recieved
// TODO: mTool != NEW_LINE is a hack for lines until more buttons can be received
if ( mAttributes && mTool != QgsGrassEdit::NEW_LINE && mTool != QgsGrassEdit::NEW_BOUNDARY )
{
delete mAttributes;
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/grass/qgsgrassmapcalc.h
Expand Up @@ -93,13 +93,13 @@ class QgsGrassMapcalc: public QMainWindow, private Ui::QgsGrassMapcalcBase,
bool inputRegion( struct Cell_head *window, bool all );
QStringList output( int type );

/** \brief recieves contentsMousePressEvent from view */
/** \brief receives contentsMousePressEvent from view */
void contentsMousePressEvent( QMouseEvent* );

/** \brief recieves contentsMouseReleaseEvent from view */
/** \brief receives contentsMouseReleaseEvent from view */
void contentsMouseReleaseEvent( QMouseEvent* );

/** \brief recieves contentsMouseMoveEvent from view */
/** \brief receives contentsMouseMoveEvent from view */
void contentsMouseMoveEvent( QMouseEvent* );

void keyPressEvent( QKeyEvent * e );
Expand Down

0 comments on commit 3890cf3

Please sign in to comment.