mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-05 13:47:26 +02:00
Use old-style member initialisers
This commit is contained in:
@@ -32,11 +32,12 @@ public:
|
|||||||
NetworkReply* reply;
|
NetworkReply* reply;
|
||||||
IODeviceCallback callback;
|
IODeviceCallback callback;
|
||||||
QWeakPointer<HttpIODeviceReadyHandler> ref;
|
QWeakPointer<HttpIODeviceReadyHandler> ref;
|
||||||
bool once = false;
|
bool once;
|
||||||
|
|
||||||
HttpIODeviceReadyHandler( NetworkReply* _reply, IODeviceCallback _callback )
|
HttpIODeviceReadyHandler( NetworkReply* _reply, IODeviceCallback _callback )
|
||||||
: reply( _reply )
|
: reply( _reply )
|
||||||
, callback( _callback )
|
, callback( _callback )
|
||||||
|
, once( false )
|
||||||
{
|
{
|
||||||
// Do Nothing
|
// Do Nothing
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user