aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorJordi Vilalta Prat2008-12-22 11:22:15 +0000
committerJordi Vilalta Prat2008-12-22 11:22:15 +0000
commitb1999a2a16b83aa031df2ce1cb266b7fea8847da (patch)
treea042bbc975ead7e8b38243d0d25822d70e72fe69 /base
parent2ec51ef3585d9450ddf21cff9212c0bc7f0b6a3f (diff)
downloadscummvm-rg350-b1999a2a16b83aa031df2ce1cb266b7fea8847da.tar.gz
scummvm-rg350-b1999a2a16b83aa031df2ce1cb266b7fea8847da.tar.bz2
scummvm-rg350-b1999a2a16b83aa031df2ce1cb266b7fea8847da.zip
Fixed indentation and removed whitespaces at the end of line
svn-id: r35481
Diffstat (limited to 'base')
-rw-r--r--base/main.cpp2
-rw-r--r--base/plugins.cpp2
-rw-r--r--base/plugins.h6
3 files changed, 5 insertions, 5 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 097eb04e73..acba304c9e 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -137,7 +137,7 @@ static Common::Error runGame(const EnginePlugin *plugin, OSystem &system, const
// Verify that the game path refers to an actual directory
if (!(dir.exists() && dir.isDirectory()))
err = Common::kInvalidPathError;
-
+
// Create the game engine
if (err == Common::kNoError)
err = (*plugin)->createInstance(&system, &engine);
diff --git a/base/plugins.cpp b/base/plugins.cpp
index cea8232e59..a751afc1b4 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -125,7 +125,7 @@ public:
#endif
#if PLUGIN_ENABLED_STATIC(MADE)
LINK_PLUGIN(MADE)
- #endif
+ #endif
#if PLUGIN_ENABLED_STATIC(PARALLACTION)
LINK_PLUGIN(PARALLACTION)
#endif
diff --git a/base/plugins.h b/base/plugins.h
index bb99818648..faf256c6b5 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -194,7 +194,7 @@ public:
/**
* Abstract base class for Plugin factories. Subclasses of this
- * are responsible for creating plugin objects, e.g. by loading
+ * are responsible for creating plugin objects, e.g. by loading
* loadable modules from storage media; by creating "fake" plugins
* from static code; or whatever other means.
*/
@@ -226,7 +226,7 @@ public:
* Return a list of Plugin objects loaded via createPlugin from disk.
* For this, a list of directories is searched for plugin objects:
* The current dir and its "plugins" subdirectory (if present), a list
- * of custom search dirs (see addCustomDirectories) and finally the
+ * of custom search dirs (see addCustomDirectories) and finally the
* directory specified via the "pluginspath" config variable (if any).
*
* @return a list of Plugin instances
@@ -258,7 +258,7 @@ protected:
* plugins by getPlugins().
*
* @param dirs the reference to the list of directories to be used when
- * searching for plugins.
+ * searching for plugins.
*/
virtual void addCustomDirectories(Common::FSList &dirs) const;
};