aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorAlejandro Marzini2010-06-15 03:49:20 +0000
committerAlejandro Marzini2010-06-15 03:49:20 +0000
commit6a52a168eeb54938c757d3be560f7ba8b30aa7c0 (patch)
treef9019a44c91592a519903d2ae453e22eb695d20d /backends
parent3cd521ec307cc585a609095d47f2926dd0af262d (diff)
downloadscummvm-rg350-6a52a168eeb54938c757d3be560f7ba8b30aa7c0.tar.gz
scummvm-rg350-6a52a168eeb54938c757d3be560f7ba8b30aa7c0.tar.bz2
scummvm-rg350-6a52a168eeb54938c757d3be560f7ba8b30aa7c0.zip
Renamed abstract Manager files.
svn-id: r49677
Diffstat (limited to 'backends')
-rw-r--r--backends/audiocd/audiocd.h (renamed from backends/audiocd/abstract-audiocd.h)0
-rw-r--r--backends/audiocd/default/default-audiocd.h2
-rw-r--r--backends/graphics/graphics.h (renamed from backends/graphics/abstract-graphics.h)0
-rw-r--r--backends/graphics/null/null-graphics.h2
-rw-r--r--backends/graphics/sdl/sdl-graphics.h2
-rw-r--r--backends/mutex/mutex.h (renamed from backends/mutex/abstract-mutex.h)0
-rw-r--r--backends/mutex/null/null-mutex.h2
-rw-r--r--backends/mutex/sdl/sdl-mutex.h2
8 files changed, 5 insertions, 5 deletions
diff --git a/backends/audiocd/abstract-audiocd.h b/backends/audiocd/audiocd.h
index 41634b38fb..41634b38fb 100644
--- a/backends/audiocd/abstract-audiocd.h
+++ b/backends/audiocd/audiocd.h
diff --git a/backends/audiocd/default/default-audiocd.h b/backends/audiocd/default/default-audiocd.h
index af75572788..4669382a53 100644
--- a/backends/audiocd/default/default-audiocd.h
+++ b/backends/audiocd/default/default-audiocd.h
@@ -26,7 +26,7 @@
#ifndef BACKENDS_AUDIOCD_DEFAULT_H
#define BACKENDS_AUDIOCD_DEFAULT_H
-#include "backends/audiocd/abstract-audiocd.h"
+#include "backends/audiocd/audiocd.h"
#include "sound/mixer.h"
class DefaultAudioCDManager : AudioCDManager {
diff --git a/backends/graphics/abstract-graphics.h b/backends/graphics/graphics.h
index 6037bb10e3..6037bb10e3 100644
--- a/backends/graphics/abstract-graphics.h
+++ b/backends/graphics/graphics.h
diff --git a/backends/graphics/null/null-graphics.h b/backends/graphics/null/null-graphics.h
index 8423f4f5da..3ee99be93d 100644
--- a/backends/graphics/null/null-graphics.h
+++ b/backends/graphics/null/null-graphics.h
@@ -26,7 +26,7 @@
#ifndef BACKENDS_GRAPHICS_NULL_H
#define BACKENDS_GRAPHICS_NULL_H
-#include "backends/graphics/abstract-graphics.h"
+#include "backends/graphics/graphics.h"
static const OSystem::GraphicsMode s_noGraphicsModes[] = { {0, 0, 0} };
diff --git a/backends/graphics/sdl/sdl-graphics.h b/backends/graphics/sdl/sdl-graphics.h
index 1ba0074bd1..84bb439783 100644
--- a/backends/graphics/sdl/sdl-graphics.h
+++ b/backends/graphics/sdl/sdl-graphics.h
@@ -26,7 +26,7 @@
#ifndef BACKENDS_GRAPHICS_SDL_H
#define BACKENDS_GRAPHICS_SDL_H
-#include "backends/graphics/abstract-graphics.h"
+#include "backends/graphics/graphics.h"
#include "common/system.h"
#include "graphics/scaler.h"
diff --git a/backends/mutex/abstract-mutex.h b/backends/mutex/mutex.h
index d8647bae13..d8647bae13 100644
--- a/backends/mutex/abstract-mutex.h
+++ b/backends/mutex/mutex.h
diff --git a/backends/mutex/null/null-mutex.h b/backends/mutex/null/null-mutex.h
index 76bb595631..ddfe23bdee 100644
--- a/backends/mutex/null/null-mutex.h
+++ b/backends/mutex/null/null-mutex.h
@@ -26,7 +26,7 @@
#ifndef BACKENDS_MUTEX_NULL_H
#define BACKENDS_MUTEX_NULL_H
-#include "backends/mutex/abstract-mutex.h"
+#include "backends/mutex/mutex.h"
class NullMutexManager : MutexManager {
public:
diff --git a/backends/mutex/sdl/sdl-mutex.h b/backends/mutex/sdl/sdl-mutex.h
index acd13a879d..a929ea495f 100644
--- a/backends/mutex/sdl/sdl-mutex.h
+++ b/backends/mutex/sdl/sdl-mutex.h
@@ -26,7 +26,7 @@
#ifndef BACKENDS_MUTEX_SDL_H
#define BACKENDS_MUTEX_SDL_H
-#include "backends/mutex/abstract-mutex.h"
+#include "backends/mutex/mutex.h"
class SdlMutexManager : public MutexManager {
public: