]> cgit.babelmonkeys.de Git - mpdbot.git/commitdiff
Properly declare ivars
authorFlorian Zeitz <florob@babelmonkeys.de>
Thu, 22 Dec 2011 20:03:54 +0000 (21:03 +0100)
committerFlorian Zeitz <florob@babelmonkeys.de>
Thu, 22 Dec 2011 20:03:54 +0000 (21:03 +0100)
src/MPDConnection.h
src/PEPThread.h
src/mpdbot.m

index e776e6e5215888e548000c5fc5a0d809380cbdcd..a60d93cea1eadef0c5dc5c54e6ec041b46ed264d 100644 (file)
  */
 
 @interface MPDConnection: OFObject
+{
 OFTCPSocket *sock;
 OFString *mpd_host;
 uint16_t mpd_port;
+}
 
 - (void)connect;
 - (OFMutableDictionary*)response;
index 049c4d913a9126e7c127b074ee0edc02770e0772..a752ecad6fc347d1ceae94af0145920915821c93 100644 (file)
@@ -23,5 +23,7 @@
 #import "MPDConnection.h"
 
 @interface PEPThread: OFThread
+{
 MPDConnection *conn;
+}
 @end
index dc7689efa59f0c3750fe36d83f64a01abda889c1..84f864deb653e58f4fa2ef7929dc792d0120cfa8 100644 (file)
 #define NS_DISCO_INFO @"http://jabber.org/protocol/disco#info"
 
 @interface AppDelegate: OFObject <OFApplicationDelegate, XMPPConnectionDelegate>
+{
 OFString *discoID;
 PEPThread *pepper;
+}
 @end
 
 OF_APPLICATION_DELEGATE(AppDelegate)