1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 09:49:42 +01:00

Use old-style member initialisers

This commit is contained in:
Uwe L. Korn 2014-08-23 12:33:47 +01:00
parent 3eb63a44e4
commit 01123a38e6

View File

@ -32,11 +32,12 @@ public:
NetworkReply* reply;
IODeviceCallback callback;
QWeakPointer<HttpIODeviceReadyHandler> ref;
bool once = false;
bool once;
HttpIODeviceReadyHandler( NetworkReply* _reply, IODeviceCallback _callback )
: reply( _reply )
, callback( _callback )
, once( false )
{
// Do Nothing
}