Skip to content

Commit

Permalink
Fix a few typos. Committing now because I am about to reorganise and …
Browse files Browse the repository at this point in the history
…finally give special class MagicBase a proper name. Maybe ListableGame
  • Loading branch information
billforsternz committed Nov 20, 2015
1 parent 7c84eb6 commit ce913df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/t3/CreateDatabaseDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ void CreateDatabaseDialog::OnCreateDatabase()
error_msg = db_primitive_error_msg();
if( error_msg == "cancel" )
error_msg = "Database creation cancelled";
wxMessageBox( error_msg.c_str(), "Database creation afiled", wxOK|wxICON_ERROR );
wxMessageBox( error_msg.c_str(), "Database creation failed", wxOK|wxICON_ERROR );
db_primitive_close();
unlink(db_filename.c_str());
}
Expand Down
6 changes: 3 additions & 3 deletions src/t3/GameLogic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -959,9 +959,9 @@ void GameLogic::CmdDatabase( thc::ChessRules &cr, DB_REQ db_req )
if( !operational )
{
wxMessageBox(
"The database is not currently running. To correct this select a database\n"
"using the database menu. If you don't have a database, the database menu\n"
"also offers a command to create a database\n", "Database problem", wxOK|wxICON_ERROR
"The database is not currently running. To correct this select a database "
"using the database menu. If you don't have a database, the database menu "
"also offers a command to create a database.", "Database problem", wxOK|wxICON_ERROR
);
}
else
Expand Down

0 comments on commit ce913df

Please sign in to comment.