diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-08 03:17:58 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-08 03:17:58 +0000 |
commit | e9be9eaaea3e90af7224aa7fb4bb5333e9d7be57 (patch) | |
tree | 11e7af008b0bae322664319901e1a976fd078cba /updater/utils.cpp | |
parent | 92be070586e97f44892da28a592aa1c0925a40d1 (diff) |
Removed translation of plugin names
Improved icon management, added support for W7 large icons
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@503 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/utils.cpp')
-rw-r--r-- | updater/utils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/updater/utils.cpp b/updater/utils.cpp index 98d57be..9b8eea9 100644 --- a/updater/utils.cpp +++ b/updater/utils.cpp @@ -73,7 +73,8 @@ bool CreatePath(const TCHAR *szDir) TCHAR *GetTString(const char *asc)
{
if (!asc) return NULL;
- return (TCHAR*)CallService(MS_LANGPACK_PCHARTOTCHAR, 0, (LPARAM)asc);
+ return mir_a2t(asc);
+// return (TCHAR*)CallService(MS_LANGPACK_PCHARTOTCHAR, 0, (LPARAM)asc);
}
void RemoveFolder(const TCHAR *src_folder)
|