[Ktutorial-commits] SF.net SVN: ktutorial:[235] trunk/ktutorial/ktutorial-editor/src
Status: Alpha
Brought to you by:
danxuliu
From: <dan...@us...> - 2010-04-25 23:15:19
|
Revision: 235 http://ktutorial.svn.sourceforge.net/ktutorial/?rev=235&view=rev Author: danxuliu Date: 2010-04-25 23:15:13 +0000 (Sun, 25 Apr 2010) Log Message: ----------- Make destructors virtual. Modified Paths: -------------- trunk/ktutorial/ktutorial-editor/src/FileActions.h trunk/ktutorial/ktutorial-editor/src/targetapplication/RemoteObjectMapper.h Modified: trunk/ktutorial/ktutorial-editor/src/FileActions.h =================================================================== --- trunk/ktutorial/ktutorial-editor/src/FileActions.h 2010-04-25 23:10:44 UTC (rev 234) +++ trunk/ktutorial/ktutorial-editor/src/FileActions.h 2010-04-25 23:15:13 UTC (rev 235) @@ -63,7 +63,7 @@ * Destroys this FileActions. * The entries in the recent files action are saved in the configuration. */ - ~FileActions(); + virtual ~FileActions(); /** * Returns the tutorial URL. Modified: trunk/ktutorial/ktutorial-editor/src/targetapplication/RemoteObjectMapper.h =================================================================== --- trunk/ktutorial/ktutorial-editor/src/targetapplication/RemoteObjectMapper.h 2010-04-25 23:10:44 UTC (rev 234) +++ trunk/ktutorial/ktutorial-editor/src/targetapplication/RemoteObjectMapper.h 2010-04-25 23:15:13 UTC (rev 235) @@ -48,7 +48,7 @@ * Destroys this RemoteObjectMapper. * All the mapped RemoteObjects and RemoteClasses are also destroyed. */ - ~RemoteObjectMapper(); + virtual ~RemoteObjectMapper(); /** * Returns the RemoteObject associated with the given object id. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |