@@ -99,22 +99,22 @@ /*! * @brief Represents the application as an object. */ @interface OFApplication: OFObject { - OFString *programName; - OFMutableArray *arguments; - OFMutableDictionary *environment; - int *argc; - char ***argv; + OFString *_programName; + OFArray *_arguments; + OFDictionary *_environment; + int *_argc; + char ***_argv; @public - id delegate; - void (*SIGINTHandler)(id, SEL); + id _delegate; + void (*_SIGINTHandler)(id, SEL); #ifndef _WIN32 - void (*SIGHUPHandler)(id, SEL); - void (*SIGUSR1Handler)(id, SEL); - void (*SIGUSR2Handler)(id, SEL); + void (*_SIGHUPHandler)(id, SEL); + void (*_SIGUSR1Handler)(id, SEL); + void (*_SIGUSR2Handler)(id, SEL); #endif } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy, nonatomic) OFString *programName;