Skip to content

Commit aa327af

Browse files
committedJan 30, 2018
Spelling
1 parent 9d2f1bb commit aa327af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/app/mainwin.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
void showError( std::string message, std::string title )
1111
{
12-
std::string newmessage = "Opps, looks like an error loading QGIS \n\n Details: \n\n" + message;
12+
std::string newmessage = "Oops, looks like an error loading QGIS \n\n Details: \n\n" + message;
1313
MessageBox(
1414
NULL,
1515
newmessage.c_str(),
@@ -142,9 +142,9 @@ int CALLBACK WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
142142
0,
143143
NULL );
144144

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

149149
LocalFree( errorText );
150150
errorText = NULL;

0 commit comments

Comments
 (0)
Please sign in to comment.