@@ -29,17 +29,17 @@ /*! * @brief A class providing a run loop for the application and its processes. */ @interface OFRunLoop: OFObject { - OFSortedList *timersQueue; + OFSortedList *_timersQueue; #ifdef OF_HAVE_THREADS - OFMutex *timersQueueLock; + OFMutex *_timersQueueLock; #endif - OFStreamObserver *streamObserver; - OFMutableDictionary *readQueues; - volatile BOOL running; + OFStreamObserver *_streamObserver; + OFMutableDictionary *_readQueues; + volatile BOOL _running; } /*! * @brief Returns the main run loop. *