From b1ab118bcc78acc13db888f0dee2b3d5349dec48 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Thu, 17 Jan 2013 08:41:41 +0000 Subject: - iceit: cosmetics git-svn-id: http://svn.miranda-ng.org/main/trunk@3124 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- tools/iceit/Project1.exe | Bin 182784 -> 0 bytes tools/iceit/Unit1.dcu | Bin 22507 -> 0 bytes tools/iceit/Unit1.pas | 24 ++++++++++++------------ tools/iceit/bin/iceit.exe | Bin 0 -> 183808 bytes tools/iceit/upx.exe | Bin 271872 -> 293888 bytes 5 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 tools/iceit/Project1.exe delete mode 100644 tools/iceit/Unit1.dcu create mode 100644 tools/iceit/bin/iceit.exe (limited to 'tools') diff --git a/tools/iceit/Project1.exe b/tools/iceit/Project1.exe deleted file mode 100644 index de3702b9a2..0000000000 Binary files a/tools/iceit/Project1.exe and /dev/null differ diff --git a/tools/iceit/Unit1.dcu b/tools/iceit/Unit1.dcu deleted file mode 100644 index d5f27d3cfd..0000000000 Binary files a/tools/iceit/Unit1.dcu and /dev/null differ diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 84444ba3bf..c0541fcabf 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -423,8 +423,8 @@ begin ProgressBar1.Position := n; S := GetValue(CheckListBox1.Items[n], 0); S := LowerCase(S); - if n < PluginsItem then F := '\icons' else - if n < coreitem then F := '\plugins' else F := '\core'; + if n < IconsItem then F := '\core' else + if n < PluginsItem then F := '\icons' else F := '\plugins'; StatusBar1.Panels[0].Text := ' Processing: ' + S; if (S = 'miranda32') or (S = 'miranda64') then begin @@ -527,12 +527,12 @@ begin AssignFile(Log, 'iceit.log'); Rewrite(Log); IcePath := ExtractFilePath(ParamStr(0)); - // Icons - CheckListBox1.Items.Add('icons|NONE|'); - IconsItem := CheckListBox1.Items.Count-1; - CheckListBox1.Header[IconsItem] := True; + // Core + CheckListBox1.Items.Add('core|NONE|'); + CoreItem := CheckListBox1.Items.Count-1; + CheckListBox1.Header[CoreItem] := True; FindData.dwFileAttributes := FILE_ATTRIBUTE_NORMAL; - FilePath := IcePath + '\icons\*.*'; + FilePath := IcePath + '\core\*.*'; FindHandle := FindFirstFile(PChar(FilePath), FindData); if FindHandle <> INVALID_HANDLE_VALUE then begin @@ -567,12 +567,12 @@ begin end; end; Windows.FindClose(FindHandle); - // core - CheckListBox1.Items.Add('core|NONE|'); - CoreItem := CheckListBox1.Items.Count-1; - CheckListBox1.Header[PluginsItem] := True; + // Icons + CheckListBox1.Items.Add('icons|NONE|'); + IconsItem := CheckListBox1.Items.Count-1; + CheckListBox1.Header[IconsItem] := True; FindData.dwFileAttributes := FILE_ATTRIBUTE_NORMAL; - FilePath := IcePath + '\core\*.*'; + FilePath := IcePath + '\icons\*.*'; FindHandle := FindFirstFile(PChar(FilePath), FindData); if FindHandle <> INVALID_HANDLE_VALUE then begin diff --git a/tools/iceit/bin/iceit.exe b/tools/iceit/bin/iceit.exe new file mode 100644 index 0000000000..67ca08a5ea Binary files /dev/null and b/tools/iceit/bin/iceit.exe differ diff --git a/tools/iceit/upx.exe b/tools/iceit/upx.exe index 6266213c65..e23a9ed9b0 100644 Binary files a/tools/iceit/upx.exe and b/tools/iceit/upx.exe differ -- cgit v1.2.3