Ticket #1453: patch3.diff

File patch3.diff, 2.6 KB (added by tropics, 19 years ago)

patch v1

Line 
1Index: source/Interface/FileZilla Server Interface.vcproj
2===================================================================
3RCS file: /cvsroot/filezilla/FileZilla Server/source/Interface/FileZilla Server Interface.vcproj,v
4retrieving revision 1.2
5diff -r1.2 FileZilla Server Interface.vcproj
61226a1229,1231
7> RelativePath=".\res\rt_manif.bin">
8> </File>
9> <File
10
11Index: source/Interface/FileZilla server.rc
12===================================================================
13RCS file: /cvsroot/filezilla/FileZilla Server/source/Interface/FileZilla server.rc,v
14retrieving revision 1.50
15diff -r1.50 FileZilla server.rc
161249a1250,1256
17> // RT_MANIFEST
18> //
19>
20> IDR_RT_MANIFEST1 RT_MANIFEST "res\\rt_manif.bin"
21>
22> /////////////////////////////////////////////////////////////////////////////
23> //
24
25Index: source/Interface/MainFrm.cpp
26===================================================================
27RCS file: /cvsroot/filezilla/FileZilla Server/source/Interface/MainFrm.cpp,v
28retrieving revision 1.20
29diff -r1.20 MainFrm.cpp
3092c92,93
31< ID_INDICATOR_SENDLED
32---
33> ID_INDICATOR_SENDLED,
34> ID_SEPARATOR
35152a154,156
36> // the last statusbar pane is a fake one, it has zero width
37> m_wndStatusBar.SetPaneInfo(7,0,SBPS_NOBORDERS,0);
38>
39160,165d163
40< CRect rect2;
41< m_wndStatusBar.GetItemRect(m_wndStatusBar.CommandToIndex(ID_INDICATOR_RECVLED), rect2);
42< // Reposition the first LED correctly!
43< m_RecvLed.SetWindowPos(&wndTop, rect2.left, rect2.top, rect2.right - rect2.left,
44< rect2.bottom - rect2.top, 0);
45<
46166a165
47> m_wndStatusBar.GetItemRect(m_wndStatusBar.CommandToIndex(ID_INDICATOR_SENDLED), rect);
48169d167
49<
50171,175d168
51< m_wndStatusBar.GetItemRect(m_wndStatusBar.CommandToIndex(ID_INDICATOR_SENDLED), &rect2);
52< // Reposition the second LED correctly!
53< m_SendLed.SetWindowPos(&wndTop, rect2.left, rect2.top, rect2.right - rect2.left,
54< rect2.bottom - rect2.top, 0);
55<
56177c170
57< m_wndStatusBar.SetPaneInfo(m_wndStatusBar.CommandToIndex(ID_INDICATOR_SENDLED),ID_INDICATOR_SENDLED,SBPS_NOBORDERS,0);
58---
59> m_wndStatusBar.SetPaneInfo(m_wndStatusBar.CommandToIndex(ID_INDICATOR_SENDLED),ID_INDICATOR_SENDLED,SBPS_NOBORDERS,6);
60
61Index: source/Interface/resource.h
62===================================================================
63RCS file: /cvsroot/filezilla/FileZilla Server/source/Interface/resource.h,v
64retrieving revision 1.26
65diff -r1.26 resource.h
665a6
67> #define IDR_RT_MANIFEST1 1
68272c273
69< #define _APS_NEXT_RESOURCE_VALUE 157
70---
71> #define _APS_NEXT_RESOURCE_VALUE 158
72
73