aboutsummaryrefslogtreecommitdiff
path: root/common/str.h
diff options
context:
space:
mode:
authorChristoph Mallon2011-08-06 09:47:19 +0200
committerChristoph Mallon2011-08-07 15:19:07 +0200
commit84220d2ca05707f22a0242b1745caf0b657237a3 (patch)
tree2982f113aae0d6bd41b394f44c64664270982933 /common/str.h
parentb3997f0562e31f41716ecaff24cc3431925f0029 (diff)
downloadscummvm-rg350-84220d2ca05707f22a0242b1745caf0b657237a3.tar.gz
scummvm-rg350-84220d2ca05707f22a0242b1745caf0b657237a3.tar.bz2
scummvm-rg350-84220d2ca05707f22a0242b1745caf0b657237a3.zip
COMMON: Remove superfluous Common:: qualifiers.
Diffstat (limited to 'common/str.h')
-rw-r--r--common/str.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/str.h b/common/str.h
index 8e07b6233d..5039130707 100644
--- a/common/str.h
+++ b/common/str.h
@@ -219,14 +219,14 @@ public:
* except that it stores the result in (variably sized) String
* instead of a fixed size buffer.
*/
- static Common::String format(const char *fmt, ...) GCC_PRINTF(1,2);
+ static String format(const char *fmt, ...) GCC_PRINTF(1,2);
/**
* Print formatted data into a String object. Similar to vsprintf,
* except that it stores the result in (variably sized) String
* instead of a fixed size buffer.
*/
- static Common::String vformat(const char *fmt, va_list args);
+ static String vformat(const char *fmt, va_list args);
public:
typedef char * iterator;
@@ -293,7 +293,7 @@ extern char *trim(char *t);
* @param sep character used to separate path components
* @return The last component of the path.
*/
-Common::String lastPathComponent(const Common::String &path, const char sep);
+String lastPathComponent(const String &path, const char sep);
/**
* Normalize a given path to a canonical form. In particular:
@@ -307,7 +307,7 @@ Common::String lastPathComponent(const Common::String &path, const char sep);
* @param sep the separator token (usually '/' on Unix-style systems, or '\\' on Windows based stuff)
* @return the normalized path
*/
-Common::String normalizePath(const Common::String &path, const char sep);
+String normalizePath(const String &path, const char sep);
/**