diff options
| author | Max Horn | 2011-05-03 10:33:03 +0200 |
|---|---|---|
| committer | Max Horn | 2011-05-03 13:22:00 +0200 |
| commit | f62fd4f25f5fcc237d59054af0d6182da8d8eff8 (patch) | |
| tree | 05fd53a36cd791f91419e261a547c7c2406daa98 /backends/fs/symbian/symbian-fs-factory.cpp | |
| parent | 5ea9e14c2fcd3c1054ce95867ca7df7c8498a2d8 (diff) | |
| download | scummvm-rg350-f62fd4f25f5fcc237d59054af0d6182da8d8eff8.tar.gz scummvm-rg350-f62fd4f25f5fcc237d59054af0d6182da8d8eff8.tar.bz2 scummvm-rg350-f62fd4f25f5fcc237d59054af0d6182da8d8eff8.zip | |
BACKENDS: Avoid #including .cpp files
So far, the various *-fs-factory.cpp files were #including the
corresponding *-fs.cpp files. This is surprising and hence could lead to
all kinds of problems). To fix this, provide proper headers for the
*-fs.cpp files.
This also makes code reuse via subclassing possible.
Since not all ports were tested, this will likely lead to a few
easy to fix compile regressions.
Diffstat (limited to 'backends/fs/symbian/symbian-fs-factory.cpp')
| -rw-r--r-- | backends/fs/symbian/symbian-fs-factory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fs/symbian/symbian-fs-factory.cpp b/backends/fs/symbian/symbian-fs-factory.cpp index c70a67f339..9afacfebf5 100644 --- a/backends/fs/symbian/symbian-fs-factory.cpp +++ b/backends/fs/symbian/symbian-fs-factory.cpp @@ -24,7 +24,7 @@ #if defined(__SYMBIAN32__) #include "backends/fs/symbian/symbian-fs-factory.h" -#include "backends/fs/symbian/symbian-fs.cpp" +#include "backends/fs/symbian/symbian-fs.h" AbstractFSNode *SymbianFilesystemFactory::makeRootFileNode() const { return new SymbianFilesystemNode(true); |
