[Scummvm-git-logs] scummvm master -> 70dc08f46e5e7b78578496ce8517f7b0373636d6
SupSuper
supsuper at gmail.com
Mon Feb 22 11:56:50 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
70dc08f46e JANITORIAL: Cleanup inconsistent includes
Commit: 70dc08f46e5e7b78578496ce8517f7b0373636d6
https://github.com/scummvm/scummvm/commit/70dc08f46e5e7b78578496ce8517f7b0373636d6
Author: SupSuper (supsuper at gmail.com)
Date: 2021-02-22T10:54:07Z
Commit Message:
JANITORIAL: Cleanup inconsistent includes
Changed paths:
backends/cloud/folderdownloadrequest.cpp
backends/cloud/storage.cpp
backends/networking/sdl_net/handlers/createdirectoryhandler.cpp
backends/networking/sdl_net/localwebserver.cpp
engines/ags/shared/util/bbop.h
engines/dragons/sound.cpp
engines/stark/resources/path.h
gui/remotebrowser.h
gui/saveload-dialog.cpp
diff --git a/backends/cloud/folderdownloadrequest.cpp b/backends/cloud/folderdownloadrequest.cpp
index c3b9eece87..152d9141a2 100644
--- a/backends/cloud/folderdownloadrequest.cpp
+++ b/backends/cloud/folderdownloadrequest.cpp
@@ -25,7 +25,7 @@
#include "backends/cloud/id/iddownloadrequest.h"
#include "common/debug.h"
#include "gui/downloaddialog.h"
-#include <backends/networking/curl/connectionmanager.h>
+#include "backends/networking/curl/connectionmanager.h"
#include "cloudmanager.h"
namespace Cloud {
diff --git a/backends/cloud/storage.cpp b/backends/cloud/storage.cpp
index 76b6a241bb..25755b5922 100644
--- a/backends/cloud/storage.cpp
+++ b/backends/cloud/storage.cpp
@@ -27,7 +27,7 @@
#include "backends/networking/curl/connectionmanager.h"
#include "common/debug.h"
#include "common/file.h"
-#include <common/translation.h>
+#include "common/translation.h"
#include "common/osd_message_queue.h"
namespace Cloud {
diff --git a/backends/networking/sdl_net/handlers/createdirectoryhandler.cpp b/backends/networking/sdl_net/handlers/createdirectoryhandler.cpp
index 96f1373736..4e125feb70 100644
--- a/backends/networking/sdl_net/handlers/createdirectoryhandler.cpp
+++ b/backends/networking/sdl_net/handlers/createdirectoryhandler.cpp
@@ -25,7 +25,7 @@
#include "backends/networking/sdl_net/handlerutils.h"
#include "backends/networking/sdl_net/localwebserver.h"
#include "common/translation.h"
-#include <common/callback.h>
+#include "common/callback.h"
namespace Networking {
diff --git a/backends/networking/sdl_net/localwebserver.cpp b/backends/networking/sdl_net/localwebserver.cpp
index 7ef1565ad4..bd5806ee80 100644
--- a/backends/networking/sdl_net/localwebserver.cpp
+++ b/backends/networking/sdl_net/localwebserver.cpp
@@ -30,7 +30,7 @@
#include "common/timer.h"
#include "common/translation.h"
#include <SDL_net.h>
-#include <common/config-manager.h>
+#include "common/config-manager.h"
#ifdef POSIX
#include <errno.h>
diff --git a/engines/ags/shared/util/bbop.h b/engines/ags/shared/util/bbop.h
index 0eb32a13a6..0d7c52eb9a 100644
--- a/engines/ags/shared/util/bbop.h
+++ b/engines/ags/shared/util/bbop.h
@@ -29,7 +29,7 @@
#ifndef AGS_SHARED_UTIL_BBOP_H
#define AGS_SHARED_UTIL_BBOP_H
-#include <common/endian.h>
+#include "common/endian.h"
#include "ags/shared/core/platform.h"
#include "ags/shared/core/types.h"
diff --git a/engines/dragons/sound.cpp b/engines/dragons/sound.cpp
index 8d0b2cf13b..4a3c4aa82c 100644
--- a/engines/dragons/sound.cpp
+++ b/engines/dragons/sound.cpp
@@ -19,9 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
-#include <audio/soundfont/rawfile.h>
-#include <audio/soundfont/vab/vab.h>
-#include <audio/soundfont/vgmcoll.h>
+#include "audio/soundfont/rawfile.h"
+#include "audio/soundfont/vab/vab.h"
+#include "audio/soundfont/vgmcoll.h"
#include "audio/mixer.h"
#include "audio/audiostream.h"
#include "audio/decoders/raw.h"
diff --git a/engines/stark/resources/path.h b/engines/stark/resources/path.h
index 8a03ec9a14..dce1e64f8b 100644
--- a/engines/stark/resources/path.h
+++ b/engines/stark/resources/path.h
@@ -23,8 +23,8 @@
#ifndef STARK_RESOURCES_PATH_H
#define STARK_RESOURCES_PATH_H
-#include <common/rect.h>
-#include <math/vector3d.h>
+#include "common/rect.h"
+#include "math/vector3d.h"
#include "common/str.h"
#include "engines/stark/resources/object.h"
diff --git a/gui/remotebrowser.h b/gui/remotebrowser.h
index 47e636b9fc..e3505972ce 100644
--- a/gui/remotebrowser.h
+++ b/gui/remotebrowser.h
@@ -25,9 +25,9 @@
#include "gui/dialog.h"
#include "common/fs.h"
-#include <backends/cloud/storagefile.h>
-#include <backends/networking/curl/request.h>
-#include <backends/cloud/storage.h>
+#include "backends/cloud/storagefile.h"
+#include "backends/networking/curl/request.h"
+#include "backends/cloud/storage.h"
namespace GUI {
diff --git a/gui/saveload-dialog.cpp b/gui/saveload-dialog.cpp
index c2175edefc..b8dd758cc3 100644
--- a/gui/saveload-dialog.cpp
+++ b/gui/saveload-dialog.cpp
@@ -37,7 +37,7 @@
#include "gui/widgets/edittext.h"
#include "graphics/scaler.h"
-#include <common/savefile.h>
+#include "common/savefile.h"
namespace GUI {
More information about the Scummvm-git-logs
mailing list