diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-17 08:54:56 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-17 08:54:56 +0000 |
commit | d752067610fc2617399d00897ce8559be70952d3 (patch) | |
tree | cd44743698947734035ccfb69d95a404972bf812 | |
parent | b1ab118bcc78acc13db888f0dee2b3d5349dec48 (diff) |
- iceit: one more fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@3125 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | tools/iceit/Unit1.pas | 20 | ||||
-rw-r--r-- | tools/iceit/bin/iceit.exe | bin | 183808 -> 183808 bytes |
2 files changed, 10 insertions, 10 deletions
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 Binary files differindex 67ca08a5ea..f3d2335d3a 100644 --- a/tools/iceit/bin/iceit.exe +++ b/tools/iceit/bin/iceit.exe |