diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-06-13 18:06:58 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-06-13 18:06:58 +0000 |
commit | 9f7f62d3d4f7ed6553d786e5aabf20a8ca32c700 (patch) | |
tree | 9191352359dbe08288e07f654e750116f6a83dc3 /tools | |
parent | 0d7f7abc960af99841b5bf10f56e23640222ae49 (diff) |
libs folder added
git-svn-id: http://svn.miranda-ng.org/main/trunk@14146 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools')
-rw-r--r-- | tools/iceit/Unit1.pas | 6 | ||||
-rw-r--r-- | tools/iceit/bin/iceit.exe | bin | 193536 -> 193536 bytes |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 919bde982e..6b5bfaa97c 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -85,7 +85,7 @@ type var
Form1: TForm1;
- IconsItem, PluginsItem, CoreItem: Integer;
+ IconsItem, PluginsItem, CoreItem, LibsItem: Integer;
IcePath: String;
MirandaPath: String;
@@ -433,7 +433,8 @@ begin S := GetValue(CheckListBox1.Items[n], 0);
S := LowerCase(S);
// keep the order as for FillCombo function (atm Core<Plugins<Icons)
- if n < PluginsItem then F := '\core'
+ if n < LibsItem then F := '\ '
+ else if n < PluginsItem then F := '\libs'
else if n < IconsItem then F := '\icons'
else F := '\plugins';
@@ -569,6 +570,7 @@ begin IcePath := ExtractFilePath(ParamStr(0));
CoreItem := FillCombo('core');
+ LibsItem := FillCombo('libs');
PluginsItem := FillCombo('icons');
IconsItem := FillCombo('plugins');
end;
diff --git a/tools/iceit/bin/iceit.exe b/tools/iceit/bin/iceit.exe Binary files differindex 074ad308a7..95e9fbe0d7 100644 --- a/tools/iceit/bin/iceit.exe +++ b/tools/iceit/bin/iceit.exe |