Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 30, 2018
1 parent 9d2f1bb commit aa327af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/mainwin.cpp
Expand Up @@ -9,7 +9,7 @@

void showError( std::string message, std::string title )
{
std::string newmessage = "Opps, looks like an error loading QGIS \n\n Details: \n\n" + message;
std::string newmessage = "Oops, looks like an error loading QGIS \n\n Details: \n\n" + message;
MessageBox(
NULL,
newmessage.c_str(),
Expand Down Expand Up @@ -142,9 +142,9 @@ int CALLBACK WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
0,
NULL );

std::string messsage = "Could not load qgis_app.dll \n Windows Error: " + std::string( errorText )
std::string message = "Could not load qgis_app.dll \n Windows Error: " + std::string( errorText )
+ "\n Help: \n\n Check " + basename + ".env for correct environment paths";
showError( messsage, "Error loading QGIS" );
showError( message, "Error loading QGIS" );

LocalFree( errorText );
errorText = NULL;
Expand Down

0 comments on commit aa327af

Please sign in to comment.