diff options
author | Torbjörn Andersson | 2012-12-20 07:55:08 +0100 |
---|---|---|
committer | Torbjörn Andersson | 2012-12-20 07:55:08 +0100 |
commit | 7661379f3e9b9f7d3ac32101865f9ca0b49a864c (patch) | |
tree | 80a79eee5b957c0b82149d094d8d2559fd8722e2 | |
parent | 55fee6d97b3739eeac70429b1083420f875025b9 (diff) | |
download | scummvm-rg350-7661379f3e9b9f7d3ac32101865f9ca0b49a864c.tar.gz scummvm-rg350-7661379f3e9b9f7d3ac32101865f9ca0b49a864c.tar.bz2 scummvm-rg350-7661379f3e9b9f7d3ac32101865f9ca0b49a864c.zip |
JANITORIAL: Indent with tabs instead of spaces
-rw-r--r-- | gui/about.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gui/about.cpp b/gui/about.cpp index 03be1f8992..9eb8a0175a 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -110,16 +110,16 @@ AboutDialog::AboutDialog() const EnginePlugin::List &plugins = EngineMan.getPlugins(); EnginePlugin::List::const_iterator iter = plugins.begin(); for (; iter != plugins.end(); ++iter) { - Common::String str; - str = "C0"; - str += (**iter).getName(); - addLine(str.c_str()); + Common::String str; + str = "C0"; + str += (**iter).getName(); + addLine(str.c_str()); - str = "C2"; - str += (**iter)->getOriginalCopyright(); - addLine(str.c_str()); + str = "C2"; + str += (**iter)->getOriginalCopyright(); + addLine(str.c_str()); - //addLine(""); + //addLine(""); } for (i = 0; i < ARRAYSIZE(gpl_text); i++) |