From d752067610fc2617399d00897ce8559be70952d3 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Thu, 17 Jan 2013 08:54:56 +0000 Subject: - iceit: one more fix git-svn-id: http://svn.miranda-ng.org/main/trunk@3125 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- tools/iceit/Unit1.pas | 20 ++++++++++---------- tools/iceit/bin/iceit.exe | Bin 183808 -> 183808 bytes 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'tools') diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index c0541fcabf..384fe5e2bf 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -547,12 +547,12 @@ begin end; end; Windows.FindClose(FindHandle); - // Plugins - CheckListBox1.Items.Add('plugins|NONE|'); - PluginsItem := 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 + '\plugins\*.*'; + FilePath := IcePath + '\icons\*.*'; FindHandle := FindFirstFile(PChar(FilePath), FindData); if FindHandle <> INVALID_HANDLE_VALUE then begin @@ -567,12 +567,12 @@ begin end; end; Windows.FindClose(FindHandle); - // Icons - CheckListBox1.Items.Add('icons|NONE|'); - IconsItem := CheckListBox1.Items.Count-1; - CheckListBox1.Header[IconsItem] := True; + // Plugins + CheckListBox1.Items.Add('plugins|NONE|'); + PluginsItem := CheckListBox1.Items.Count-1; + CheckListBox1.Header[PluginsItem] := True; FindData.dwFileAttributes := FILE_ATTRIBUTE_NORMAL; - FilePath := IcePath + '\icons\*.*'; + FilePath := IcePath + '\plugins\*.*'; 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 index 67ca08a5ea..f3d2335d3a 100644 Binary files a/tools/iceit/bin/iceit.exe and b/tools/iceit/bin/iceit.exe differ -- cgit v1.2.3