~ubuntu-branches/ubuntu/karmic/filezilla/karmic

« back to all changes in this revision

Viewing changes to src/interface/asyncrequestqueue.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adrien Cunin
  • Date: 2007-07-30 18:54:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070730185413-p60opijyw3p4dfc2
Tags: 3.0.0~beta11-0ubuntu1
* New upstream release
* Dropped dpatch
* debian/README.Debian: dropped, the warning is not correct
* debian/filezilla-common.docs: added AUTHORS and NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include "Mainfrm.h"
5
5
#include "defaultfileexistsdlg.h"
6
6
#include "Options.h"
7
 
#include "QueueView.h"
 
7
#include "queue.h"
8
8
#include "verifycertdialog.h"
9
9
#include "loginmanager.h"
10
10
 
162
162
                                                        reinterpret_cast<CFileExistsNotification *>(entry.pNotification)->overwriteAction = CFileExistsNotification::OverwriteAction(action - 1);
163
163
                                                }
164
164
 
165
 
                                                enum AcceptedTransferDirection direction;
 
165
                                                enum TransferDirection direction;
166
166
                                                if (directionOnly)
167
167
                                                {
168
168
                                                        if (pNotification->download)
171
171
                                                                direction = upload;
172
172
                                                }
173
173
                                                else
174
 
                                                        direction = all;
 
174
                                                        direction = both;
175
175
 
176
176
                                                if (m_pQueueView)
177
177
                                                        m_pQueueView->SetDefaultFileExistsAction(action, direction);