diff options
| author | Max Horn | 2006-06-24 08:07:48 +0000 |
|---|---|---|
| committer | Max Horn | 2006-06-24 08:07:48 +0000 |
| commit | d210b19aec69d34711e5d473e6e4e5081955b02e (patch) | |
| tree | 3346e4ab55138bffc74c614faf862bcff10b896c /gui | |
| parent | 72a4747dd64461e4bca819f5a246c84518b7ff8d (diff) | |
| download | scummvm-rg350-d210b19aec69d34711e5d473e6e4e5081955b02e.tar.gz scummvm-rg350-d210b19aec69d34711e5d473e6e4e5081955b02e.tar.bz2 scummvm-rg350-d210b19aec69d34711e5d473e6e4e5081955b02e.zip | |
Move backends/fs/fs.h and .cpp to common/fs/fs.h and .cpp
Rationale: backend implementations belong to backends/, but portable APIs meant to be used by high level code is for common / sound / graphics / ... (compare also with backends/midi vs. sound/mididrv.h)
svn-id: r23274
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/browser.cpp | 3 | ||||
| -rw-r--r-- | gui/browser.h | 2 | ||||
| -rw-r--r-- | gui/launcher.cpp | 3 | ||||
| -rw-r--r-- | gui/options.cpp | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/gui/browser.cpp b/gui/browser.cpp index 8bce35f0a8..59ab8ee5ae 100644 --- a/gui/browser.cpp +++ b/gui/browser.cpp @@ -24,9 +24,8 @@ #include "gui/newgui.h" #include "gui/ListWidget.h" -#include "backends/fs/fs.h" - #include "common/config-manager.h" +#include "common/fs.h" #include "common/system.h" #include "common/func.h" diff --git a/gui/browser.h b/gui/browser.h index bc6f676426..66400bfc07 100644 --- a/gui/browser.h +++ b/gui/browser.h @@ -24,7 +24,7 @@ #include "gui/dialog.h" #include "common/str.h" -#include "backends/fs/fs.h" +#include "common/fs.h" #ifdef MACOSX #include <Carbon/Carbon.h> diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 7f8af551ee..249752e984 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -21,14 +21,13 @@ #include "common/stdafx.h" -#include "backends/fs/fs.h" - #include "base/engine.h" #include "base/game.h" #include "base/plugins.h" #include "base/version.h" #include "common/config-manager.h" +#include "common/fs.h" #include "common/util.h" #include "common/system.h" diff --git a/gui/options.cpp b/gui/options.cpp index 79f2044589..fd16813c5f 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -28,10 +28,12 @@ #include "gui/PopUpWidget.h" #include "gui/TabWidget.h" -#include "backends/fs/fs.h" +#include "common/fs.h" #include "common/config-manager.h" -#include "graphics/scaler.h" #include "common/system.h" + +#include "graphics/scaler.h" + #include "sound/mididrv.h" #include "sound/mixer.h" |
