diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-19 21:30:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-19 21:30:34 +0000 |
commit | d598295516603ec3b7e040abb58a7d63cee34c73 (patch) | |
tree | 804e29f9214ccd00ba4633a8f5fb02b2413372a9 /tools | |
parent | 7d80f317be457461efc11c9479c0cc51a6885f61 (diff) |
fix for the icons patcher
git-svn-id: http://svn.miranda-ng.org/main/trunk@14274 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools')
-rw-r--r-- | tools/iceit/Unit1.pas | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 614df63878..387ff1f643 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -403,7 +403,7 @@ procedure TForm1.IceItClick(Sender: TObject); var
n: Integer;
S: String;
- F: String;
+ F,X: String;
xFilePath: String;
xIcoPath: String;
xTemp: String;
@@ -450,7 +450,9 @@ begin end
else
begin
- xFilePath := MirandaPath + F + '\' + S + '.dll';
+ if (F = '\libs') then X := '.mir'
+ else X := '.dll';
+ xFilePath := MirandaPath + F + '\' + S + X;
xIcoPath := IcePath + F + '\' + S + '\' + S;
end;
CheckListBox1.Items[n] := SetValue(CheckListBox1.Items[n], 1, 'PROGRESS');
|