[Scummvm-cvs-logs] CVS: scummvm/common config-file.cpp,1.25,1.26 config-manager.cpp,1.36,1.37 debugger.cpp,1.15,1.16 file.h,1.36,1.37 mutex.cpp,1.2,1.3 savefile.cpp,1.25,1.26 savefile.h,1.19,1.20 str.cpp,1.35,1.36 stream.cpp,1.8,1.9 stream.h,1.19,1.20 system.cpp,1.25,1.26 timer.cpp,1.34,1.35 util.cpp,1.56,1.57
Max Horn
fingolfin at users.sourceforge.net
Fri Jun 24 08:27:07 CEST 2005
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.370,1.371 akos.cpp,1.229,1.230 base-costume.cpp,2.29,2.30 bomp.cpp,2.32,2.33 boxes.cpp,1.89,1.90 camera.cpp,2.34,2.35 charset.cpp,2.149,2.150 costume.cpp,1.186,1.187 cursor.cpp,2.44,2.45 debugger.cpp,1.150,1.151 dialogs.cpp,1.146,1.147 gfx.cpp,2.462,2.463 help.cpp,1.21,1.22 imuse.cpp,2.144,2.145 imuse_player.cpp,2.53,2.54 input.cpp,2.31,2.32 instrument.cpp,2.34,2.35 instrument.h,2.17,2.18 logic_he.cpp,2.22,2.23 logic_he.h,2.13,2.14 midiparser_eup.cpp,1.15,1.16 midiparser_ro.cpp,1.7,1.8 nut_renderer.cpp,1.59,1.60 object.cpp,1.245,1.246 palette.cpp,2.50,2.51 palette_he.cpp,1.20,1.21 player_mod.cpp,2.22,2.23 player_nes.cpp,2.3,2.4 player_v1.cpp,1.24,1.25 player_v2.cpp,2.59,2.60 player_v2a.cpp,2.30,2.31 player_v3a.cpp,1.23,1.24 resource.cpp,1.328,1.329 resource_v2.cpp,1.55,1.56 resource_v3.cpp,1.39,1.40 resource_v4.cpp,1.26,1.27 resource_v7he.cpp,1.43,1.44 room.cpp,1.17,1.18 saveload.cpp,1.230,1.231 script.cpp,1.224,1.225 script_c64.cpp,2.9,2.10 script_v100he.cpp,2.166,2.167 script_v2.cpp,2.278,2.279 script_v5.cpp,1.288,1.289 script_v6.cpp,1.444,1.445 script_v6he.cpp,2.160,2.161 script_v72he.cpp,2.300,2.301 script_v7he.cpp,2.162,2.163 script_v8.cpp,2.296,2.297 script_v80he.cpp,2.121,2.122 script_v90he.cpp,2.274,2.275 scumm.cpp,1.547,1.548 sound.cpp,1.468,1.469 sprite_he.cpp,1.149,1.150 string.cpp,1.296,1.297 usage_bits.cpp,1.14,1.15 vars.cpp,1.139,1.140 verbs.cpp,1.138,1.139 wiz_he.cpp,2.89,2.90
- Next message: [Scummvm-cvs-logs] CVS: scummvm/backends/PalmOS/Src/forms formmain.cpp,1.6,1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17960/common
Modified Files:
config-file.cpp config-manager.cpp debugger.cpp file.h
mutex.cpp savefile.cpp savefile.h str.cpp stream.cpp stream.h
system.cpp timer.cpp util.cpp
Log Message:
When including files from common/, explicitly use the common/ prefix
Index: config-file.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/config-file.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- config-file.cpp 21 Jun 2005 22:08:14 -0000 1.25
+++ config-file.cpp 24 Jun 2005 15:22:37 -0000 1.26
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/config-file.h"
#include "common/file.h"
Index: config-manager.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/config-manager.cpp,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- config-manager.cpp 21 Jun 2005 22:08:14 -0000 1.36
+++ config-manager.cpp 24 Jun 2005 15:22:37 -0000 1.37
@@ -20,7 +20,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/config-manager.h"
#include "common/file.h"
Index: debugger.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/debugger.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- debugger.cpp 21 Jun 2005 22:08:14 -0000 1.15
+++ debugger.cpp 24 Jun 2005 15:22:37 -0000 1.16
@@ -18,7 +18,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/debugger.h"
#include "common/system.h"
Index: file.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/file.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- file.h 10 May 2005 22:55:47 -0000 1.36
+++ file.h 24 Jun 2005 15:22:37 -0000 1.37
@@ -22,7 +22,7 @@
#ifndef COMMON_FILE_H
#define COMMON_FILE_H
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/scummsys.h"
#include "common/str.h"
#include "common/stream.h"
Index: mutex.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/mutex.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mutex.cpp 8 May 2005 17:02:19 -0000 1.2
+++ mutex.cpp 24 Jun 2005 15:22:37 -0000 1.3
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/mutex.h"
#include "common/system.h"
Index: savefile.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/savefile.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- savefile.cpp 10 May 2005 23:17:14 -0000 1.25
+++ savefile.cpp 24 Jun 2005 15:22:37 -0000 1.26
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/util.h"
#include "common/config-manager.h"
#include "common/savefile.h"
Index: savefile.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/savefile.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- savefile.h 10 May 2005 23:17:14 -0000 1.19
+++ savefile.h 24 Jun 2005 15:22:38 -0000 1.20
@@ -22,7 +22,7 @@
#ifndef COMMON_SAVEFILE_H
#define COMMON_SAVEFILE_H
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/scummsys.h"
#include "common/stream.h"
Index: str.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/str.cpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- str.cpp 6 Feb 2005 19:00:58 -0000 1.35
+++ str.cpp 24 Jun 2005 15:22:38 -0000 1.36
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/str.h"
#include <ctype.h>
Index: stream.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/stream.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- stream.cpp 22 Apr 2005 17:40:07 -0000 1.8
+++ stream.cpp 24 Jun 2005 15:22:38 -0000 1.9
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/stream.h"
#include "common/str.h"
Index: stream.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/stream.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- stream.h 20 Jun 2005 17:59:00 -0000 1.19
+++ stream.h 24 Jun 2005 15:22:38 -0000 1.20
@@ -22,7 +22,7 @@
#ifndef COMMON_STREAM_H
#define COMMON_STREAM_H
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/scummsys.h"
Index: system.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/system.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- system.cpp 21 Jun 2005 22:08:14 -0000 1.25
+++ system.cpp 24 Jun 2005 15:22:38 -0000 1.26
@@ -20,7 +20,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "backends/intern.h"
Index: timer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/timer.cpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- timer.cpp 10 May 2005 23:17:15 -0000 1.34
+++ timer.cpp 24 Jun 2005 15:22:38 -0000 1.35
@@ -20,7 +20,7 @@
#ifndef __MORPHOS__
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/scummsys.h"
#include "common/timer.h"
#include "common/util.h"
Index: util.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/util.cpp,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- util.cpp 21 Jun 2005 22:08:14 -0000 1.56
+++ util.cpp 24 Jun 2005 15:22:38 -0000 1.57
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "base/engine.h"
#include "common/util.h"
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.370,1.371 akos.cpp,1.229,1.230 base-costume.cpp,2.29,2.30 bomp.cpp,2.32,2.33 boxes.cpp,1.89,1.90 camera.cpp,2.34,2.35 charset.cpp,2.149,2.150 costume.cpp,1.186,1.187 cursor.cpp,2.44,2.45 debugger.cpp,1.150,1.151 dialogs.cpp,1.146,1.147 gfx.cpp,2.462,2.463 help.cpp,1.21,1.22 imuse.cpp,2.144,2.145 imuse_player.cpp,2.53,2.54 input.cpp,2.31,2.32 instrument.cpp,2.34,2.35 instrument.h,2.17,2.18 logic_he.cpp,2.22,2.23 logic_he.h,2.13,2.14 midiparser_eup.cpp,1.15,1.16 midiparser_ro.cpp,1.7,1.8 nut_renderer.cpp,1.59,1.60 object.cpp,1.245,1.246 palette.cpp,2.50,2.51 palette_he.cpp,1.20,1.21 player_mod.cpp,2.22,2.23 player_nes.cpp,2.3,2.4 player_v1.cpp,1.24,1.25 player_v2.cpp,2.59,2.60 player_v2a.cpp,2.30,2.31 player_v3a.cpp,1.23,1.24 resource.cpp,1.328,1.329 resource_v2.cpp,1.55,1.56 resource_v3.cpp,1.39,1.40 resource_v4.cpp,1.26,1.27 resource_v7he.cpp,1.43,1.44 room.cpp,1.17,1.18 saveload.cpp,1.230,1.231 script.cpp,1.224,1.225 script_c64.cpp,2.9,2.10 script_v100he.cpp,2.166,2.167 script_v2.cpp,2.278,2.279 script_v5.cpp,1.288,1.289 script_v6.cpp,1.444,1.445 script_v6he.cpp,2.160,2.161 script_v72he.cpp,2.300,2.301 script_v7he.cpp,2.162,2.163 script_v8.cpp,2.296,2.297 script_v80he.cpp,2.121,2.122 script_v90he.cpp,2.274,2.275 scumm.cpp,1.547,1.548 sound.cpp,1.468,1.469 sprite_he.cpp,1.149,1.150 string.cpp,1.296,1.297 usage_bits.cpp,1.14,1.15 vars.cpp,1.139,1.140 verbs.cpp,1.138,1.139 wiz_he.cpp,2.89,2.90
- Next message: [Scummvm-cvs-logs] CVS: scummvm/backends/PalmOS/Src/forms formmain.cpp,1.6,1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list