aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/utils/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/utils/utils.cpp')
-rw-r--r--engines/wintermute/utils/utils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/utils/utils.cpp b/engines/wintermute/utils/utils.cpp
index 2f66313bb0..ae456b25e7 100644
--- a/engines/wintermute/utils/utils.cpp
+++ b/engines/wintermute/utils/utils.cpp
@@ -101,7 +101,7 @@ float CBUtils::NormalizeAngle(float Angle) {
void CBUtils::CreatePath(const char *Path, bool PathOnly) {
AnsiString path;
- if (!PathOnly) path = PathUtil::GetDirectoryName(Path);
+ if (!PathOnly) path = PathUtil::getDirectoryName(Path);
else path = Path;
// try {
@@ -237,7 +237,7 @@ bool CBUtils::MatchesPattern(const char *Pattern, const char *String) {
//////////////////////////////////////////////////////////////////////////
char *CBUtils::GetPath(const char *Filename) {
- AnsiString path = PathUtil::GetDirectoryName(Filename);
+ AnsiString path = PathUtil::getDirectoryName(Filename);
//path = boost::filesystem::syste_complete(path).string();
warning("CBUtils::GetPath: (%s), not implemented", Filename);
char *ret = new char[path.size() + 1];
@@ -248,7 +248,7 @@ char *CBUtils::GetPath(const char *Filename) {
//////////////////////////////////////////////////////////////////////////
char *CBUtils::GetFilename(const char *Filename) {
- AnsiString path = PathUtil::GetFileName(Filename);
+ AnsiString path = PathUtil::getFileName(Filename);
char *ret = new char[path.size() + 1];
strcpy(ret, path.c_str());
return ret;