1 | Only in src/dbus: .deps |
---|
2 | Only in src/dbus: libfzdbus.a |
---|
3 | Only in src/dbus: libfzdbus_a-desktop_notification.o |
---|
4 | Only in src/dbus: libfzdbus_a-power_management_inhibitor.o |
---|
5 | Only in src/dbus: libfzdbus_a-session_manager.o |
---|
6 | Only in src/dbus: libfzdbus_a-wxdbusconnection.o |
---|
7 | Only in src/dbus: libfzdbus_a-wxdbusmessage.o |
---|
8 | Only in src/dbus: Makefile |
---|
9 | Only in src/engine: .deps |
---|
10 | Only in src/engine: filezilla.h.gch |
---|
11 | Only in src/engine: libengine.a |
---|
12 | Only in src/engine: libengine_a-backend.o |
---|
13 | Only in src/engine: libengine_a-commands.o |
---|
14 | Only in src/engine: libengine_a-ControlSocket.o |
---|
15 | Only in src/engine: libengine_a-directorycache.o |
---|
16 | Only in src/engine: libengine_a-directorylisting.o |
---|
17 | Only in src/engine: libengine_a-directorylistingparser.o |
---|
18 | Only in src/engine: libengine_a-engineprivate.o |
---|
19 | Only in src/engine: libengine_a-externalipresolver.o |
---|
20 | Only in src/engine: libengine_a-FileZillaEngine.o |
---|
21 | Only in src/engine: libengine_a-ftpcontrolsocket.o |
---|
22 | Only in src/engine: libengine_a-httpcontrolsocket.o |
---|
23 | Only in src/engine: libengine_a-iothread.o |
---|
24 | Only in src/engine: libengine_a-local_filesys.o |
---|
25 | Only in src/engine: libengine_a-local_path.o |
---|
26 | Only in src/engine: libengine_a-logging.o |
---|
27 | Only in src/engine: libengine_a-misc.o |
---|
28 | Only in src/engine: libengine_a-notification.o |
---|
29 | Only in src/engine: libengine_a-option_change_event_handler.o |
---|
30 | Only in src/engine: libengine_a-pathcache.o |
---|
31 | Only in src/engine: libengine_a-proxy.o |
---|
32 | Only in src/engine: libengine_a-ratelimiter.o |
---|
33 | Only in src/engine: libengine_a-servercapabilities.o |
---|
34 | Only in src/engine: libengine_a-server.o |
---|
35 | Only in src/engine: libengine_a-serverpath.o |
---|
36 | Only in src/engine: libengine_a-sftpcontrolsocket.o |
---|
37 | Only in src/engine: libengine_a-sizeformatting_base.o |
---|
38 | Only in src/engine: libengine_a-socket.o |
---|
39 | Only in src/engine: libengine_a-string_coalescer.o |
---|
40 | Only in src/engine: libengine_a-threadex.o |
---|
41 | Only in src/engine: libengine_a-timeex.o |
---|
42 | Only in src/engine: libengine_a-tlssocket.o |
---|
43 | Only in src/engine: libengine_a-transfersocket.o |
---|
44 | Only in src/engine: Makefile |
---|
45 | Only in src/fzshellext: .deps |
---|
46 | Only in src/fzshellext: Makefile |
---|
47 | Only in src/fzshellext: version.rc |
---|
48 | Only in src/include: config.h |
---|
49 | Only in src/include: Makefile |
---|
50 | Only in src/include: stamp-h1 |
---|
51 | Only in src/interface: .deps |
---|
52 | diff -u -r src/interface/filelistctrl.cpp ../../Documents/filezilla-3.5.3/src/interface/filelistctrl.cpp |
---|
53 | --- src/interface/filelistctrl.cpp 2012-09-02 22:25:41.371100024 +0530 |
---|
54 | +++ ../../Documents/filezilla-3.5.3/src/interface/filelistctrl.cpp 2010-09-21 09:00:17.000000000 +0530 |
---|
55 | @@ -826,7 +826,7 @@ |
---|
56 | if (old_focus >= GetItemCount()) |
---|
57 | return; |
---|
58 | |
---|
59 | - if (old_focus != -1 && new_focus != -1) |
---|
60 | + if (old_focus != -1) |
---|
61 | { |
---|
62 | bool selected = GetItemState(old_focus, wxLIST_STATE_SELECTED) == wxLIST_STATE_SELECTED; |
---|
63 | if (!selected && m_selections[old_focus]) |
---|
64 | @@ -837,13 +837,6 @@ |
---|
65 | for (unsigned int i = 0; i < m_selections.size(); i++) |
---|
66 | m_selections[i] = 0; |
---|
67 | } |
---|
68 | - if(m_selections[new_focus] && SelectByMouse){ |
---|
69 | - if (m_pFilelistStatusBar) |
---|
70 | - m_pFilelistStatusBar->UnselectAll(); |
---|
71 | - for (unsigned int i = 0; i < m_selections.size(); i++) |
---|
72 | - m_selections[i] = 0; |
---|
73 | - old_focus = new_focus; |
---|
74 | - } |
---|
75 | } |
---|
76 | |
---|
77 | int min; |
---|
78 | @@ -906,7 +899,6 @@ |
---|
79 | { |
---|
80 | // Left clicks in the whitespace around the items deselect everything |
---|
81 | // but does not change focus. Defer event. |
---|
82 | - SelectByMouse = 1; |
---|
83 | event.Skip(); |
---|
84 | wxCommandEvent evt; |
---|
85 | evt.SetEventType(fz_EVT_DEFERRED_MOUSEEVENT); |
---|
86 | @@ -988,6 +980,5 @@ |
---|
87 | OnNavigationEvent(false); |
---|
88 | } |
---|
89 | else |
---|
90 | - SelectByMouse = 0; |
---|
91 | event.Skip(); |
---|
92 | } |
---|
93 | diff -u -r src/interface/filelistctrl.h ../../Documents/filezilla-3.5.3/src/interface/filelistctrl.h |
---|
94 | --- src/interface/filelistctrl.h 2012-09-03 10:36:58.149501810 +0530 |
---|
95 | +++ ../../Documents/filezilla-3.5.3/src/interface/filelistctrl.h 2010-09-21 09:00:17.000000000 +0530 |
---|
96 | @@ -86,7 +86,6 @@ |
---|
97 | |
---|
98 | // The .. item |
---|
99 | bool m_hasParent; |
---|
100 | - bool SelectByMouse; |
---|
101 | |
---|
102 | int m_sortColumn; |
---|
103 | int m_sortDirection; |
---|
104 | Only in src/interface: filezilla |
---|
105 | Only in src/interface: filezilla-aboutdialog.o |
---|
106 | Only in src/interface: filezilla-asyncrequestqueue.o |
---|
107 | Only in src/interface: filezilla-aui_notebook_ex.o |
---|
108 | Only in src/interface: filezilla-auto_ascii_files.o |
---|
109 | Only in src/interface: filezilla-bookmarks_dialog.o |
---|
110 | Only in src/interface: filezilla-buildinfo.o |
---|
111 | Only in src/interface: filezilla-chmoddialog.o |
---|
112 | Only in src/interface: filezilla-clearprivatedata.o |
---|
113 | Only in src/interface: filezilla-cmdline.o |
---|
114 | Only in src/interface: filezilla-commandqueue.o |
---|
115 | Only in src/interface: filezilla-conditionaldialog.o |
---|
116 | Only in src/interface: filezilla-context_control.o |
---|
117 | Only in src/interface: filezilla-customheightlistctrl.o |
---|
118 | Only in src/interface: filezilla-defaultfileexistsdlg.o |
---|
119 | Only in src/interface: filezilla-dialogex.o |
---|
120 | Only in src/interface: filezilla-dndobjects.o |
---|
121 | Only in src/interface: filezilla-dragdropmanager.o |
---|
122 | Only in src/interface: filezilla-edithandler.o |
---|
123 | Only in src/interface: filezilla-export.o |
---|
124 | Only in src/interface: filezilla-fileexistsdlg.o |
---|
125 | Only in src/interface: filezilla-filelistctrl.o |
---|
126 | Only in src/interface: filezilla-filelist_statusbar.o |
---|
127 | Only in src/interface: filezilla-FileZilla.o |
---|
128 | Only in src/interface: filezilla-filter_conditions_dialog.o |
---|
129 | Only in src/interface: filezilla-filteredit.o |
---|
130 | Only in src/interface: filezilla-filter.o |
---|
131 | Only in src/interface: filezilla.h.gch |
---|
132 | Only in src/interface: filezilla-import.o |
---|
133 | Only in src/interface: filezilla-inputdialog.o |
---|
134 | Only in src/interface: filezilla-ipcmutex.o |
---|
135 | Only in src/interface: filezilla-led.o |
---|
136 | Only in src/interface: filezilla-listctrlex.o |
---|
137 | Only in src/interface: filezilla-listingcomparison.o |
---|
138 | Only in src/interface: filezilla-locale_initializer.o |
---|
139 | Only in src/interface: filezilla-LocalListView.o |
---|
140 | Only in src/interface: filezilla-LocalTreeView.o |
---|
141 | Only in src/interface: filezilla-loginmanager.o |
---|
142 | Only in src/interface: filezilla-Mainfrm.o |
---|
143 | Only in src/interface: filezilla-manual_transfer.o |
---|
144 | Only in src/interface: filezilla-menu_bar.o |
---|
145 | Only in src/interface: filezilla-netconfwizard.o |
---|
146 | Only in src/interface: filezilla-Options.o |
---|
147 | Only in src/interface: filezilla-power_management.o |
---|
148 | Only in src/interface: filezilla-prefix.o |
---|
149 | Only in src/interface: filezilla-queue.o |
---|
150 | Only in src/interface: filezilla-queue_storage.o |
---|
151 | Only in src/interface: filezilla-queueview_failed.o |
---|
152 | Only in src/interface: filezilla-QueueView.o |
---|
153 | Only in src/interface: filezilla-queueview_successful.o |
---|
154 | Only in src/interface: filezilla-quickconnectbar.o |
---|
155 | Only in src/interface: filezilla-recentserverlist.o |
---|
156 | Only in src/interface: filezilla-recursive_operation.o |
---|
157 | Only in src/interface: filezilla-RemoteListView.o |
---|
158 | Only in src/interface: filezilla-RemoteTreeView.o |
---|
159 | Only in src/interface: filezilla-search.o |
---|
160 | Only in src/interface: filezilla-sftp_crypt_info_dlg.o |
---|
161 | Only in src/interface: filezilla-sitemanager_dialog.o |
---|
162 | Only in src/interface: filezilla-sitemanager.o |
---|
163 | Only in src/interface: filezilla-sizeformatting.o |
---|
164 | Only in src/interface: filezilla-speedlimits_dialog.o |
---|
165 | Only in src/interface: filezilla-splitter.o |
---|
166 | Only in src/interface: filezilla-state.o |
---|
167 | Only in src/interface: filezilla-statusbar.o |
---|
168 | Only in src/interface: filezilla-statuslinectrl.o |
---|
169 | Only in src/interface: filezilla-StatusView.o |
---|
170 | Only in src/interface: filezilla-systemimagelist.o |
---|
171 | Only in src/interface: filezilla-textctrlex.o |
---|
172 | Only in src/interface: filezilla-themeprovider.o |
---|
173 | Only in src/interface: filezilla-timeformatting.o |
---|
174 | Only in src/interface: filezilla-toolbar.o |
---|
175 | Only in src/interface: filezilla-treectrlex.o |
---|
176 | Only in src/interface: filezilla-updatewizard.o |
---|
177 | Only in src/interface: filezilla-verifycertdialog.o |
---|
178 | Only in src/interface: filezilla-verifyhostkeydialog.o |
---|
179 | Only in src/interface: filezilla-viewheader.o |
---|
180 | Only in src/interface: filezilla-view.o |
---|
181 | Only in src/interface: filezilla-volume_enumerator.o |
---|
182 | Only in src/interface: filezilla-welcome_dialog.o |
---|
183 | Only in src/interface: filezilla-window_state_manager.o |
---|
184 | Only in src/interface: filezilla-wrapengine.o |
---|
185 | Only in src/interface: filezilla-xh_menu_ex.o |
---|
186 | Only in src/interface: filezilla-xh_text_ex.o |
---|
187 | Only in src/interface: filezilla-xh_toolb_ex.o |
---|
188 | Only in src/interface: filezilla-xmlfunctions.o |
---|
189 | Only in src/interface: .libs |
---|
190 | Only in src/interface: Makefile |
---|
191 | Only in src/interface: patch_for_selection_problem |
---|
192 | Only in src/interface/resources/16x16: Makefile |
---|
193 | Only in src/interface/resources/32x32: Makefile |
---|
194 | Only in src/interface/resources/blukis: Makefile |
---|
195 | Only in src/interface/resources/cyril/16x16: Makefile |
---|
196 | Only in src/interface/resources/cyril: Makefile |
---|
197 | Only in src/interface/resources/lone: Makefile |
---|
198 | Only in src/interface/resources: MacInfo.plist |
---|
199 | Only in src/interface/resources: Makefile |
---|
200 | Only in src/interface/resources/minimal: Makefile |
---|
201 | Only in src/interface/resources/opencrystal: Makefile |
---|
202 | Only in src/interface/resources: version.rc |
---|
203 | Only in src/interface/settings: .deps |
---|
204 | Only in src/interface/settings: .dirstamp |
---|
205 | Only in src/interface/settings: filezilla-optionspage_connection_active.o |
---|
206 | Only in src/interface/settings: filezilla-optionspage_connection_ftp.o |
---|
207 | Only in src/interface/settings: filezilla-optionspage_connection.o |
---|
208 | Only in src/interface/settings: filezilla-optionspage_connection_passive.o |
---|
209 | Only in src/interface/settings: filezilla-optionspage_connection_sftp.o |
---|
210 | Only in src/interface/settings: filezilla-optionspage_dateformatting.o |
---|
211 | Only in src/interface/settings: filezilla-optionspage_debug.o |
---|
212 | Only in src/interface/settings: filezilla-optionspage_edit_associations.o |
---|
213 | Only in src/interface/settings: filezilla-optionspage_edit.o |
---|
214 | Only in src/interface/settings: filezilla-optionspage_fileexists.o |
---|
215 | Only in src/interface/settings: filezilla-optionspage_filelists.o |
---|
216 | Only in src/interface/settings: filezilla-optionspage_filetype.o |
---|
217 | Only in src/interface/settings: filezilla-optionspage_ftpproxy.o |
---|
218 | Only in src/interface/settings: filezilla-optionspage_interface.o |
---|
219 | Only in src/interface/settings: filezilla-optionspage_language.o |
---|
220 | Only in src/interface/settings: filezilla-optionspage_logging.o |
---|
221 | Only in src/interface/settings: filezilla-optionspage.o |
---|
222 | Only in src/interface/settings: filezilla-optionspage_proxy.o |
---|
223 | Only in src/interface/settings: filezilla-optionspage_sizeformatting.o |
---|
224 | Only in src/interface/settings: filezilla-optionspage_themes.o |
---|
225 | Only in src/interface/settings: filezilla-optionspage_transfer.o |
---|
226 | Only in src/interface/settings: filezilla-optionspage_updatecheck.o |
---|
227 | Only in src/interface/settings: filezilla-settingsdialog.o |
---|
228 | Only in src/: Makefile |
---|
229 | Only in src/putty: .deps |
---|
230 | Only in src/putty: fzputtygen |
---|
231 | Only in src/putty: fzputtygen-cmdgen.o |
---|
232 | Only in src/putty: fzputtygen-import.o |
---|
233 | Only in src/putty: fzputtygen-notiming.o |
---|
234 | Only in src/putty: fzputtygen-tree234.o |
---|
235 | Only in src/putty: fzsftp |
---|
236 | Only in src/putty: fzsftp-be_none.o |
---|
237 | Only in src/putty: fzsftp-cmdline.o |
---|
238 | Only in src/putty: fzsftp-cproxy.o |
---|
239 | Only in src/putty: fzsftp-fzsftp.o |
---|
240 | Only in src/putty: fzsftp-int64.o |
---|
241 | Only in src/putty: fzsftp-logging.o |
---|
242 | Only in src/putty: fzsftp-pinger.o |
---|
243 | Only in src/putty: fzsftp-portfwd.o |
---|
244 | Only in src/putty: fzsftp-proxy.o |
---|
245 | Only in src/putty: fzsftp-psftp.o |
---|
246 | Only in src/putty: fzsftp-settings.o |
---|
247 | Only in src/putty: fzsftp-sftp.o |
---|
248 | Only in src/putty: fzsftp-ssharcf.o |
---|
249 | Only in src/putty: fzsftp-sshblowf.o |
---|
250 | Only in src/putty: fzsftp-sshcrcda.o |
---|
251 | Only in src/putty: fzsftp-sshcrc.o |
---|
252 | Only in src/putty: fzsftp-sshdh.o |
---|
253 | Only in src/putty: fzsftp-sshdss.o |
---|
254 | Only in src/putty: fzsftp-ssh.o |
---|
255 | Only in src/putty: fzsftp-sshsha.o |
---|
256 | Only in src/putty: fzsftp-sshzlib.o |
---|
257 | Only in src/putty: fzsftp-time.o |
---|
258 | Only in src/putty: fzsftp-timing.o |
---|
259 | Only in src/putty: fzsftp-tree234.o |
---|
260 | Only in src/putty: fzsftp-version.o |
---|
261 | Only in src/putty: fzsftp-wildcard.o |
---|
262 | Only in src/putty: fzsftp-x11fwd.o |
---|
263 | Only in src/putty: libfzputtycommon.a |
---|
264 | Only in src/putty: libfzputtycommon_a-fzprintf.o |
---|
265 | Only in src/putty: libfzputtycommon_a-misc.o |
---|
266 | Only in src/putty: libfzputtycommon_a-sshaes.o |
---|
267 | Only in src/putty: libfzputtycommon_a-sshbn.o |
---|
268 | Only in src/putty: libfzputtycommon_a-sshdes.o |
---|
269 | Only in src/putty: libfzputtycommon_a-sshdss.o |
---|
270 | Only in src/putty: libfzputtycommon_a-sshmd5.o |
---|
271 | Only in src/putty: libfzputtycommon_a-sshpubk.o |
---|
272 | Only in src/putty: libfzputtycommon_a-sshrand.o |
---|
273 | Only in src/putty: libfzputtycommon_a-sshrsa.o |
---|
274 | Only in src/putty: libfzputtycommon_a-sshsh256.o |
---|
275 | Only in src/putty: libfzputtycommon_a-sshsh512.o |
---|
276 | Only in src/putty: libfzputtycommon_a-sshsha.o |
---|
277 | Only in src/putty: .libs |
---|
278 | Only in src/putty: Makefile |
---|
279 | Only in src/putty/unix: .deps |
---|
280 | Only in src/putty/unix: libfzputtycommon_ux.a |
---|
281 | Only in src/putty/unix: libfzputtycommon_ux_a-uxcons.o |
---|
282 | Only in src/putty/unix: libfzputtycommon_ux_a-uxmisc.o |
---|
283 | Only in src/putty/unix: libfzputtycommon_ux_a-uxnoise.o |
---|
284 | Only in src/putty/unix: libfzputtycommon_ux_a-uxstore.o |
---|
285 | Only in src/putty/unix: libfzsftp_ux.a |
---|
286 | Only in src/putty/unix: libfzsftp_ux_a-uxagentc.o |
---|
287 | Only in src/putty/unix: libfzsftp_ux_a-uxnet.o |
---|
288 | Only in src/putty/unix: libfzsftp_ux_a-uxnoise.o |
---|
289 | Only in src/putty/unix: libfzsftp_ux_a-uxproxy.o |
---|
290 | Only in src/putty/unix: libfzsftp_ux_a-uxsel.o |
---|
291 | Only in src/putty/unix: libfzsftp_ux_a-uxsftp.o |
---|
292 | Only in src/putty/unix: Makefile |
---|
293 | Only in src/putty/windows: .deps |
---|
294 | Only in src/putty/windows: Makefile |
---|
295 | Only in src/tinyxml: .deps |
---|
296 | Only in src/tinyxml: Makefile |
---|