@@ -46,18 +46,18 @@ @interface OFApplication: OFObject { OFString *programName; OFMutableArray *arguments; OFMutableDictionary *environment; - id delegate; + OFObject *delegate; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) OFString *programName; @property (readonly, retain) OFArray *arguments; @property (readonly, retain) OFDictionary *environment; -@property (retain) id delegate; +@property (retain) OFObject *delegate; #endif /** * \return The only OFApplication instance in the application */ @@ -117,18 +117,18 @@ - (OFDictionary*)environment; /** * \return The delegate of the application */ -- (id)delegate; +- (OFObject *)delegate; /** * Sets the delegate of the application. * * \param delegate The delegate for the application */ -- (void)setDelegate: (id)delegate; +- (void)setDelegate: (OFObject *)delegate; /** * Starts the application after everything has been initialized. */ - (void)run;