ALL: Fix typo (succesful -> successful)

Thanks to 'onlyjob' on pull request #337 for pointing out an instance of this.
This commit is contained in:
Willem Jan Palenstijn 2013-06-06 16:44:48 +02:00
parent 7456a2ca23
commit c9f0e8149d
5 changed files with 5 additions and 5 deletions

View file

@ -110,7 +110,7 @@ public:
/**
* Initialize the specified CD drive for audio playback.
* @param drive the drive id
* @return true if the CD drive was inited succesfully
* @return true if the CD drive was inited successfully
*/
virtual bool openCD(int drive) = 0;

View file

@ -100,7 +100,7 @@ public:
* @param mode Mode to use while listing the directory.
* @param hidden Whether to include hidden files or not in the results.
*
* @return true if succesful, false otherwise (e.g. when the directory does not exist).
* @return true if successful, false otherwise (e.g. when the directory does not exist).
*/
virtual bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const = 0;

View file

@ -128,7 +128,7 @@ public:
* @param name name of the keymap to push
* @param transparent if true keymapper will iterate down the
* stack if it cannot find a key in the new map
* @return true if succesful
* @return true if successful
*/
bool pushKeymap(const String& name, bool transparent = false);

View file

@ -178,7 +178,7 @@ bool WagFileParser::parse(const Common::FSNode &node) {
_parsedOk = false; // We haven't parsed the file yet
stream = node.createReadStream(); // Open the file
if (stream) { // Check that opening the file was succesful
if (stream) { // Check that opening the file was successful
if (checkWagVersion(*stream)) { // Check that WinAGI version string is valid
// It seems we've got a valid *.wag file so let's parse its properties from the start.
stream->seek(0); // Rewind the stream

View file

@ -103,7 +103,7 @@ TestExitStatus MidiTests::playMidiMusic() {
return kTestFailed;
}
Testsuite::logDetailedPrintf("Info! Midi: Succesfully opened the driver\n");
Testsuite::logDetailedPrintf("Info! Midi: Successfully opened the driver\n");
Common::MemoryWriteStreamDynamic ws(DisposeAfterUse::YES);
loadMusicInMemory(&ws);