[Scummvm-cvs-logs] SF.net SVN: scummvm:[43925] scummvm/trunk

megath at users.sourceforge.net megath at users.sourceforge.net
Thu Sep 3 23:20:13 CEST 2009


Revision: 43925
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43925&view=rev
Author:   megath
Date:     2009-09-03 21:20:13 +0000 (Thu, 03 Sep 2009)

Log Message:
-----------
fixed engines order, added svn:keywords properties.

Modified Paths:
--------------
    scummvm/trunk/base/plugins.cpp
    scummvm/trunk/configure
    scummvm/trunk/engines/engines.mk
    scummvm/trunk/engines/teenagent/actor.cpp
    scummvm/trunk/engines/teenagent/actor.h
    scummvm/trunk/engines/teenagent/animation.cpp
    scummvm/trunk/engines/teenagent/animation.h
    scummvm/trunk/engines/teenagent/callbacks.cpp
    scummvm/trunk/engines/teenagent/detection.cpp
    scummvm/trunk/engines/teenagent/dialog.cpp
    scummvm/trunk/engines/teenagent/dialog.h
    scummvm/trunk/engines/teenagent/font.cpp
    scummvm/trunk/engines/teenagent/font.h
    scummvm/trunk/engines/teenagent/inventory.cpp
    scummvm/trunk/engines/teenagent/inventory.h
    scummvm/trunk/engines/teenagent/music.cpp
    scummvm/trunk/engines/teenagent/music.h
    scummvm/trunk/engines/teenagent/objects.cpp
    scummvm/trunk/engines/teenagent/objects.h
    scummvm/trunk/engines/teenagent/pack.cpp
    scummvm/trunk/engines/teenagent/pack.h
    scummvm/trunk/engines/teenagent/resources.cpp
    scummvm/trunk/engines/teenagent/resources.h
    scummvm/trunk/engines/teenagent/scene.cpp
    scummvm/trunk/engines/teenagent/scene.h
    scummvm/trunk/engines/teenagent/segment.cpp
    scummvm/trunk/engines/teenagent/segment.h
    scummvm/trunk/engines/teenagent/surface.cpp
    scummvm/trunk/engines/teenagent/surface.h
    scummvm/trunk/engines/teenagent/teenagent.cpp
    scummvm/trunk/engines/teenagent/teenagent.h

Property Changed:
----------------
    scummvm/trunk/engines/teenagent/actor.cpp
    scummvm/trunk/engines/teenagent/actor.h
    scummvm/trunk/engines/teenagent/animation.cpp
    scummvm/trunk/engines/teenagent/animation.h
    scummvm/trunk/engines/teenagent/callbacks.cpp
    scummvm/trunk/engines/teenagent/detection.cpp
    scummvm/trunk/engines/teenagent/dialog.cpp
    scummvm/trunk/engines/teenagent/dialog.h
    scummvm/trunk/engines/teenagent/font.cpp
    scummvm/trunk/engines/teenagent/font.h
    scummvm/trunk/engines/teenagent/inventory.cpp
    scummvm/trunk/engines/teenagent/inventory.h
    scummvm/trunk/engines/teenagent/music.cpp
    scummvm/trunk/engines/teenagent/music.h
    scummvm/trunk/engines/teenagent/objects.cpp
    scummvm/trunk/engines/teenagent/objects.h
    scummvm/trunk/engines/teenagent/pack.cpp
    scummvm/trunk/engines/teenagent/pack.h
    scummvm/trunk/engines/teenagent/resources.cpp
    scummvm/trunk/engines/teenagent/resources.h
    scummvm/trunk/engines/teenagent/scene.cpp
    scummvm/trunk/engines/teenagent/scene.h
    scummvm/trunk/engines/teenagent/segment.cpp
    scummvm/trunk/engines/teenagent/segment.h
    scummvm/trunk/engines/teenagent/surface.cpp
    scummvm/trunk/engines/teenagent/surface.h
    scummvm/trunk/engines/teenagent/teenagent.cpp
    scummvm/trunk/engines/teenagent/teenagent.h

Modified: scummvm/trunk/base/plugins.cpp
===================================================================
--- scummvm/trunk/base/plugins.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/base/plugins.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -148,6 +148,9 @@
 		#if PLUGIN_ENABLED_STATIC(SWORD2)
 		LINK_PLUGIN(SWORD2)
 		#endif
+		#if PLUGIN_ENABLED_STATIC(TEENAGENT)
+		LINK_PLUGIN(TEENAGENT)
+		#endif
 		#if PLUGIN_ENABLED_STATIC(TINSEL)
 		LINK_PLUGIN(TINSEL)
 		#endif
@@ -157,9 +160,6 @@
 		#if PLUGIN_ENABLED_STATIC(TUCKER)
 		LINK_PLUGIN(TUCKER)
 		#endif
-		#if PLUGIN_ENABLED_STATIC(TEENAGENT)
-		LINK_PLUGIN(TEENAGENT)
-		#endif
 
 		// Music plugins
 		// TODO: Use defines to disable or enable each MIDI driver as a

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/configure	2009-09-03 21:20:13 UTC (rev 43925)
@@ -102,10 +102,10 @@
 add_engine sky "Beneath a Steel Sky" yes
 add_engine sword1 "Broken Sword 1" yes
 add_engine sword2 "Broken Sword 2" yes
+add_engine teenagent "Teen Agent" no
 add_engine tinsel "Tinsel" yes
 add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes
 add_engine tucker "Bud Tucker in Double Trouble" yes
-add_engine teenagent "Teen Agent" no
 
 
 #

Modified: scummvm/trunk/engines/engines.mk
===================================================================
--- scummvm/trunk/engines/engines.mk	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/engines.mk	2009-09-03 21:20:13 UTC (rev 43925)
@@ -131,6 +131,11 @@
 MODULES += engines/sword2
 endif
 
+ifdef ENABLE_TEENAGENT
+DEFINES += -DENABLE_TEENAGENT=$(ENABLE_TEENAGENT)
+MODULES += engines/teenagent
+endif
+
 ifdef ENABLE_TINSEL
 DEFINES += -DENABLE_TINSEL=$(ENABLE_TINSEL)
 MODULES += engines/tinsel
@@ -146,7 +151,3 @@
 MODULES += engines/tucker
 endif
 
-ifdef ENABLE_TEENAGENT
-DEFINES += -DENABLE_TEENAGENT=$(ENABLE_TEENAGENT)
-MODULES += engines/teenagent
-endif

Modified: scummvm/trunk/engines/teenagent/actor.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/actor.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/actor.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/actor.cpp $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 #include "actor.h"
 #include "objects.h"


Property changes on: scummvm/trunk/engines/teenagent/actor.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/actor.h
===================================================================
--- scummvm/trunk/engines/teenagent/actor.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/actor.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #include "animation.h"


Property changes on: scummvm/trunk/engines/teenagent/actor.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/animation.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/animation.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/animation.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/animation.cpp $
- * $Id: animation.cpp 296 2009-09-01 19:55:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/animation.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/animation.h
===================================================================
--- scummvm/trunk/engines/teenagent/animation.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/animation.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/animation.h $
- * $Id: animation.h 214 2009-08-14 06:09:26Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/animation.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/callbacks.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/callbacks.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/callbacks.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #include "scene.h"


Property changes on: scummvm/trunk/engines/teenagent/callbacks.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/detection.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/detection.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/detection.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/detection.cpp $
- * $Id: detection.cpp 215 2009-08-14 07:11:27Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/detection.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/dialog.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/dialog.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/dialog.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #include "dialog.h"


Property changes on: scummvm/trunk/engines/teenagent/dialog.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/dialog.h
===================================================================
--- scummvm/trunk/engines/teenagent/dialog.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/dialog.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #ifndef TEENAGENT_DIALOG_H__


Property changes on: scummvm/trunk/engines/teenagent/dialog.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/font.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/font.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/font.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/font.cpp $
- * $Id: font.cpp 242 2009-08-15 11:44:27Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/font.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/font.h
===================================================================
--- scummvm/trunk/engines/teenagent/font.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/font.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/font.h $
- * $Id: font.h 173 2009-08-11 08:10:22Z megath $
+ * $URL$
+ * $Id$
  */
 
 #ifndef TEENAGENT_FONT_H__


Property changes on: scummvm/trunk/engines/teenagent/font.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/inventory.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/inventory.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/inventory.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #include "inventory.h"


Property changes on: scummvm/trunk/engines/teenagent/inventory.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/inventory.h
===================================================================
--- scummvm/trunk/engines/teenagent/inventory.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/inventory.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #ifndef TEENAGENT_INVENTORY_H__


Property changes on: scummvm/trunk/engines/teenagent/inventory.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/music.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/music.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/music.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/old_engine/music.cpp $
- * $Id: music.cpp 121 2009-08-02 20:04:53Z megath $
+ * $URL$
+ * $Id$
  *
  */
 


Property changes on: scummvm/trunk/engines/teenagent/music.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/music.h
===================================================================
--- scummvm/trunk/engines/teenagent/music.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/music.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/old_engine/music.h $
- * $Id: music.h 121 2009-08-02 20:04:53Z megath $
+ * $URL$
+ * $Id$
  *
  */
 


Property changes on: scummvm/trunk/engines/teenagent/music.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/objects.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/objects.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/objects.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 172 2009-08-11 08:06:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 #include "objects.h"


Property changes on: scummvm/trunk/engines/teenagent/objects.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/objects.h
===================================================================
--- scummvm/trunk/engines/teenagent/objects.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/objects.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/objects.h $
- * $Id: objects.h 282 2009-08-30 22:12:01Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/objects.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/pack.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/pack.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/pack.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/pack.cpp $
- * $Id: pack.cpp 182 2009-08-11 21:16:14Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/pack.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/pack.h
===================================================================
--- scummvm/trunk/engines/teenagent/pack.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/pack.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/pack.h $
- * $Id: pack.h 182 2009-08-11 21:16:14Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/pack.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/resources.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/resources.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/resources.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/resources.cpp $
- * $Id: resources.cpp 274 2009-08-25 21:04:54Z megath $
+ * $URL$
+ * $Id$
  */
 
 #include "resources.h"


Property changes on: scummvm/trunk/engines/teenagent/resources.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/resources.h
===================================================================
--- scummvm/trunk/engines/teenagent/resources.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/resources.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/resources.h $
- * $Id: resources.h 260 2009-08-19 07:29:19Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/resources.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/scene.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/scene.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/scene.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/scene.cpp $
- * $Id: scene.cpp 303 2009-09-03 20:09:57Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/scene.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/scene.h
===================================================================
--- scummvm/trunk/engines/teenagent/scene.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/scene.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/scene.h $
- * $Id: scene.h 296 2009-09-01 19:55:58Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/scene.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/segment.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/segment.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/segment.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/segment.cpp $
- * $Id: segment.cpp 188 2009-08-12 07:22:11Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/segment.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/segment.h
===================================================================
--- scummvm/trunk/engines/teenagent/segment.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/segment.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/segment.h $
- * $Id: segment.h 188 2009-08-12 07:22:11Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/segment.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/surface.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/surface.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/surface.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/surface.cpp $
- * $Id: surface.cpp 214 2009-08-14 06:09:26Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/surface.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/surface.h
===================================================================
--- scummvm/trunk/engines/teenagent/surface.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/surface.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/surface.h $
- * $Id: surface.h 154 2009-08-10 20:10:23Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/surface.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/teenagent.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/teenagent.cpp	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/teenagent.cpp	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/tagent.cpp $
- * $Id: tagent.cpp 304 2009-09-03 20:10:22Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/teenagent.cpp
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id

Modified: scummvm/trunk/engines/teenagent/teenagent.h
===================================================================
--- scummvm/trunk/engines/teenagent/teenagent.h	2009-09-03 21:11:56 UTC (rev 43924)
+++ scummvm/trunk/engines/teenagent/teenagent.h	2009-09-03 21:20:13 UTC (rev 43925)
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
- * $URL: https://www.switchlink.se/svn/teen/tagent.h $
- * $Id: tagent.h 304 2009-09-03 20:10:22Z megath $
+ * $URL$
+ * $Id$
  */
 
 


Property changes on: scummvm/trunk/engines/teenagent/teenagent.h
___________________________________________________________________
Added: svn:keywords
   + Date Rev Author URL Id


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list