@@ -81,12 +81,12 @@ * You should not call this directly! Use of_application_main instead! * * \param argc The number of arguments * \param argv The argument values */ -- setArgumentCount: (int)argc - andArgumentValues: (char**)argv; +- (void)setArgumentCount: (int)argc + andArgumentValues: (char**)argv; /** * \return The name of the program (argv[0]) */ - (OFString*)programName; @@ -104,16 +104,16 @@ /** * Sets the delegate of the application. * * \param delegate The delegate for the application */ -- setDelegate: (id)delegate; +- (void)setDelegate: (id)delegate; /** * Starts the application after everything has been initialized. */ -- run; +- (void)run; /** * Terminates the application. */ - (void)terminate;