[Ktutorial-commits] SF.net SVN: ktutorial:[357] trunk/ktutorial/ktutorial-library/src/ ObjectFinder
Status: Alpha
Brought to you by:
danxuliu
From: <dan...@us...> - 2012-08-09 09:40:37
|
Revision: 357 http://ktutorial.svn.sourceforge.net/ktutorial/?rev=357&view=rev Author: danxuliu Date: 2012-08-09 09:40:28 +0000 (Thu, 09 Aug 2012) Log Message: ----------- Add missing default null parent to the constructor. Modified Paths: -------------- trunk/ktutorial/ktutorial-library/src/ObjectFinder.h Modified: trunk/ktutorial/ktutorial-library/src/ObjectFinder.h =================================================================== --- trunk/ktutorial/ktutorial-library/src/ObjectFinder.h 2012-08-04 15:54:59 UTC (rev 356) +++ trunk/ktutorial/ktutorial-library/src/ObjectFinder.h 2012-08-09 09:40:28 UTC (rev 357) @@ -38,7 +38,7 @@ * * @param parent The parent object. */ - ObjectFinder(QObject* parent): QObject(parent) { + ObjectFinder(QObject* parent = 0): QObject(parent) { } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |