gemrb: Infinity Engine emulator
The branch master has been updated
via da17b0685a26790f4b7f029b4a841bc543578ca0 (commit)
Summary of changes:
gemrb/core/Audio.cpp | 2 +-
gemrb/core/SaveGameIterator.cpp | 2 +-
gemrb/core/Sprite2D.cpp | 2 +-
gemrb/core/Video.cpp | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
from b903f4523c6bc30ca78e28db1d4adf79776efd2d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://gemrb.git.sourceforge.net/git/gitweb.cgi?p=gemrb/gemrb;a=commitdiff;h=da17b0685a26790f4b7f029b4a841bc543578ca0
commit da17b0685a26790f4b7f029b4a841bc543578ca0
Author: Tom Prince <tom.prince@...>
Date: Sun May 23 22:46:37 2010 -0400
And some more missing consts.
Signed-off-by: Tom Prince <tom.prince@...>
diff --git a/gemrb/core/Audio.cpp b/gemrb/core/Audio.cpp
index 3d54946..31809cb 100644
--- a/gemrb/core/Audio.cpp
+++ b/gemrb/core/Audio.cpp
@@ -20,7 +20,7 @@
#include "Audio.h"
-TypeID Audio::ID = { "Audio" };
+const TypeID Audio::ID = { "Audio" };
Audio::Audio(void)
{
diff --git a/gemrb/core/SaveGameIterator.cpp b/gemrb/core/SaveGameIterator.cpp
index 834c432..71da4b4 100644
--- a/gemrb/core/SaveGameIterator.cpp
+++ b/gemrb/core/SaveGameIterator.cpp
@@ -34,7 +34,7 @@
#include <iterator>
#include <cassert>
-TypeID SaveGame::ID = { "SaveGame" };
+const TypeID SaveGame::ID = { "SaveGame" };
/** Extract date from save game ds into Date. */
static void ParseGameDate(DataStream *ds, char *Date)
diff --git a/gemrb/core/Sprite2D.cpp b/gemrb/core/Sprite2D.cpp
index 72d3750..a6806e9 100644
--- a/gemrb/core/Sprite2D.cpp
+++ b/gemrb/core/Sprite2D.cpp
@@ -23,7 +23,7 @@
#include "Video.h"
#include "Interface.h"
-TypeID Sprite2D::ID = { "Sprite2D" };
+const TypeID Sprite2D::ID = { "Sprite2D" };
Sprite2D::Sprite2D()
{
diff --git a/gemrb/core/Video.cpp b/gemrb/core/Video.cpp
index 7477235..36be5f0 100644
--- a/gemrb/core/Video.cpp
+++ b/gemrb/core/Video.cpp
@@ -26,7 +26,7 @@
#include "Audio.h"
#include "Interface.h"
-TypeID Video::ID = { "Video" };
+const TypeID Video::ID = { "Video" };
Video::Video(void)
{
-----------------------------------------------------------------------
This is an automated email from the git hooks/post-receive script.
--
gemrb: Infinity Engine emulator
|