diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-06 00:55:48 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-06 00:55:48 +0000 |
commit | 03e3e4ebe0fee7bbe8014014b77a21d22cc090a8 (patch) | |
tree | 59eb86b2a5252bd336398594b21ff8a6c4252c00 /updater/icons.cpp | |
parent | 92f7a736e44f3d5199e48459daa78b89a0c9f46d (diff) |
Fixed translation issue
Removed unneeded/duplicated code (thus shaved few more kb from the dll)
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@496 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/icons.cpp')
-rw-r--r-- | updater/icons.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/icons.cpp b/updater/icons.cpp index a8349c5..9b8c3b5 100644 --- a/updater/icons.cpp +++ b/updater/icons.cpp @@ -78,7 +78,7 @@ void InitIcons(void) for (i = 0; i < sizeof(iconList) / sizeof(IconStruct); ++i)
{
- sid.pszDescription = Translate(iconList[i].szDescr);
+ sid.pszDescription = iconList[i].szDescr;
sid.pszName = iconList[i].szName;
sid.iDefaultIndex = -iconList[i].defIconID;
CallService(MS_SKIN2_ADDICON, 0, (LPARAM)&sid);
|