diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-13 13:10:45 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-13 13:10:45 +0000 |
commit | c85ab4b527114590428e8bedb07d0c54cdf68bf9 (patch) | |
tree | b9a015d3d6e872cea51a5d6150046ee0a708f1ec /tools/iceit | |
parent | b9f2210bf683eddd554ff1b3d18357b3fd7b87d2 (diff) |
small fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@6491 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/iceit')
-rw-r--r-- | tools/iceit/Unit1.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 0381147e42..703ed3cdea 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -443,8 +443,8 @@ begin xFilePath := MirandaPath + '\' + S + '.exe';
//in order not to duplicate existing packages of icons (miranda32) for miranda 64
// will not work if there are two files (miranda32.exe and miranda64.exe)
- if not FileExists(mirandapath+'\miranda32.exe') then
- xFilePath := MirandaPath + '\Miranda64.exe';
+ if not FileExists(MirandaPath + '\miranda32.exe') then
+ xFilePath := MirandaPath + '\miranda64.exe';
xIcoPath := IcePath + F + '\' + S + '\' + S;
end
else
|