@@ -203,11 +203,11 @@ return of_application_main(&argc, &argv, [TestsAppDelegate class]); #endif } @implementation TestsAppDelegate -- (void)outputString: (OFString*)str +- (void)outputString: (OFString *)str inColor: (int)color { #if defined(OF_PSP) char space = ' '; int y = pspDebugScreenGetY(); @@ -259,12 +259,12 @@ #else # error No output method! #endif } -- (void)outputTesting: (OFString*)test - inModule: (OFString*)module +- (void)outputTesting: (OFString *)test + inModule: (OFString *)module { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; #ifndef STDOUT_SIMPLE [self outputString: [OFString stringWithFormat: @"[%@] %@: testing...", module, test] @@ -275,12 +275,12 @@ inColor: YELLOW]; #endif [pool release]; } -- (void)outputSuccess: (OFString*)test - inModule: (OFString*)module +- (void)outputSuccess: (OFString *)test + inModule: (OFString *)module { #ifndef STDOUT_SIMPLE OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; [self outputString: [OFString stringWithFormat: @"[%@] %@: ok\n", module, test] @@ -290,12 +290,12 @@ [self outputString: @"ok\n" inColor: GREEN]; #endif } -- (void)outputFailure: (OFString*)test - inModule: (OFString*)module +- (void)outputFailure: (OFString *)test + inModule: (OFString *)module { #ifndef STDOUT_SIMPLE OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; [self outputString: [OFString stringWithFormat: @"[%@] %@: failed\n", module, test] @@ -370,11 +370,11 @@ [of_stderr writeString: @"Failed to locate resources!\n"]; [OFApplication terminateWithStatus: 1]; } [[OFFileManager defaultManager] changeCurrentDirectoryPath: - [OFString stringWithUTF8String: (const char*)resourcesPath]]; + [OFString stringWithUTF8String: (const char *)resourcesPath]]; #endif #if defined(OF_WII) && defined(OF_HAVE_FILES) [[OFFileManager defaultManager] changeCurrentDirectoryPath: @"/apps/objfw-tests"]; #endif