diff options
| author | Filippos Karapetis | 2011-01-24 00:03:09 +0000 |
|---|---|---|
| committer | Filippos Karapetis | 2011-01-24 00:03:09 +0000 |
| commit | 1f1cb1f1402206b3b120a50fe759a36388b1be4d (patch) | |
| tree | bb678a6764c1a2944d6538ef19ef5fa2b10db887 /engines/sword25/math | |
| parent | a7f7b90aee9569817da161f1673584da2495b61e (diff) | |
| download | scummvm-rg350-1f1cb1f1402206b3b120a50fe759a36388b1be4d.tar.gz scummvm-rg350-1f1cb1f1402206b3b120a50fe759a36388b1be4d.tar.bz2 scummvm-rg350-1f1cb1f1402206b3b120a50fe759a36388b1be4d.zip | |
SWORD25: Removed the logErrorLn and logWarningLn wrappers
svn-id: r55488
Diffstat (limited to 'engines/sword25/math')
| -rw-r--r-- | engines/sword25/math/regionregistry.cpp | 8 | ||||
| -rw-r--r-- | engines/sword25/math/regionregistry.h | 4 |
2 files changed, 0 insertions, 12 deletions
diff --git a/engines/sword25/math/regionregistry.cpp b/engines/sword25/math/regionregistry.cpp index 5802fbb3ff..978a1807f7 100644 --- a/engines/sword25/math/regionregistry.cpp +++ b/engines/sword25/math/regionregistry.cpp @@ -41,14 +41,6 @@ DECLARE_SINGLETON(Sword25::RegionRegistry); namespace Sword25 { -void RegionRegistry::logErrorLn(const char *message) const { - error("%s", message); -} - -void RegionRegistry::logWarningLn(const char *message) const { - warning("%s", message); -} - bool RegionRegistry::persist(OutputPersistenceBlock &writer) { bool result = true; diff --git a/engines/sword25/math/regionregistry.h b/engines/sword25/math/regionregistry.h index 560d4ae4a9..db3e021e25 100644 --- a/engines/sword25/math/regionregistry.h +++ b/engines/sword25/math/regionregistry.h @@ -52,10 +52,6 @@ class RegionRegistry : public: virtual bool persist(OutputPersistenceBlock &writer); virtual bool unpersist(InputPersistenceBlock &reader); - -private: - virtual void logErrorLn(const char *message) const; - virtual void logWarningLn(const char *message) const; }; } // End of namespace Sword25 |
