Skip to content

Commit

Permalink
Removed unnecessary explicit calls to member constructors
Browse files Browse the repository at this point in the history
They will be called implicitly exactly the same way.
  • Loading branch information
bjorn committed Mar 16, 2014
1 parent 177e3d6 commit 46fdd15
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion box2dbody.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ Box2DBody::Box2DBody(QQuickItem *parent) :
QQuickItem(parent),
mBody(0),
mWorld(0),
mBodyDef(),
mSynchronizing(false),
mInitializePending(false)
{
Expand Down
1 change: 0 additions & 1 deletion box2ddistancejoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

Box2DDistanceJoint::Box2DDistanceJoint(QObject *parent) :
Box2DJoint(parent),
mDistanceJointDef(),
mDistanceJoint(0),
anchorsAuto(true)
{
Expand Down
1 change: 0 additions & 1 deletion box2dfixture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
Box2DFixture::Box2DFixture(QQuickItem *parent) :
QQuickItem(parent),
mFixture(0),
mFixtureDef(),
factorWidth(1.0),
factorHeight(1.0)
{
Expand Down
1 change: 0 additions & 1 deletion box2dfrictionjoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

Box2DFrictionJoint::Box2DFrictionJoint(QObject *parent) :
Box2DJoint(parent),
mFrictionJointDef(),
mFrictionJoint(0),
anchorsAuto(true)
{
Expand Down
1 change: 0 additions & 1 deletion box2dgearjoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

Box2DGearJoint::Box2DGearJoint(QObject *parent) :
Box2DJoint(parent),
mGearJointDef(),
mGearJoint(0)
{
}
Expand Down
1 change: 0 additions & 1 deletion box2dmotorjoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

Box2DMotorJoint::Box2DMotorJoint(QObject *parent) :
Box2DJoint(parent),
mMotorJointDef(),
mMotorJoint(0)
{
}
Expand Down
1 change: 0 additions & 1 deletion box2dmousejoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

Box2DMouseJoint::Box2DMouseJoint(QObject *parent) :
Box2DJoint(parent),
mMouseJointDef(),
mMouseJoint(0)
{
}
Expand Down
1 change: 0 additions & 1 deletion box2dprismaticjoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

Box2DPrismaticJoint::Box2DPrismaticJoint(QObject *parent) :
Box2DJoint(parent),
mPrismaticJointDef(),
mPrismaticJoint(0),
anchorsAuto(true)
{
Expand Down
1 change: 0 additions & 1 deletion box2dpulleyjoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

Box2DPulleyJoint::Box2DPulleyJoint(QObject *parent) :
Box2DJoint(parent),
mPulleyJointDef(),
mPulleyJoint(0)
{
}
Expand Down
1 change: 0 additions & 1 deletion box2drevolutejoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

Box2DRevoluteJoint::Box2DRevoluteJoint(QObject *parent) :
Box2DJoint(parent),
mRevoluteJointDef(),
mRevoluteJoint(0),
anchorsAuto(true)
{
Expand Down
1 change: 0 additions & 1 deletion box2dropejoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

Box2DRopeJoint::Box2DRopeJoint(QObject *parent) :
Box2DJoint(parent),
mRopeJointDef(),
mRopeJoint(0)
{
}
Expand Down
1 change: 0 additions & 1 deletion box2dweldjoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

Box2DWeldJoint::Box2DWeldJoint(QObject *parent) :
Box2DJoint(parent),
mWeldJointDef(),
mWeldJoint(0),
anchorsAuto(true)
{
Expand Down
1 change: 0 additions & 1 deletion box2dwheeljoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

Box2DWheelJoint::Box2DWheelJoint(QObject *parent) :
Box2DJoint(parent),
mWheelJointDef(),
mWheelJoint(0),
anchorsAuto(true)
{
Expand Down

0 comments on commit 46fdd15

Please sign in to comment.