ObjQt  Diff

Differences From Artifact [a3fdff21da]:

To Artifact [6c34637edf]:


76
77
78
79
80
81
82
















	    forName: (OFString*)name;
- (bool)signalsBlocked;
- (int)startTimerWithInterval: (int)interval
			 type: (Qt::TimerType)type;
- (QtThread*)thread;
- (void)deleteLater;
@end























>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
	    forName: (OFString*)name;
- (bool)signalsBlocked;
- (int)startTimerWithInterval: (int)interval
			 type: (Qt::TimerType)type;
- (QtThread*)thread;
- (void)deleteLater;
@end

namespace ObjQt {

static OF_INLINE QtObject*
toOF(QObject *qObject)
{
	return [[[QtObject alloc] initWithQObject: qObject] autorelease];
}

static OF_INLINE QObject*
toQt(QtObject *object)
{
	return [object qObject];
}

}