mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
Add Q_DECL_OVERRIDE for all function that are overriding something
This was made automatically with clang-modernize -override-macros -add-override
This commit is contained in:
parent
e0c2e8ed86
commit
bcfa34357b
34 changed files with 153 additions and 153 deletions
|
@ -64,8 +64,8 @@ public:
|
|||
*/
|
||||
const QColor & color() const { return m_color; }
|
||||
|
||||
virtual QSize sizeHint() const;
|
||||
int heightForWidth(int w) const;
|
||||
virtual QSize sizeHint() const Q_DECL_OVERRIDE;
|
||||
int heightForWidth(int w) const Q_DECL_OVERRIDE;
|
||||
public slots:
|
||||
/*! Starts the spin animation.
|
||||
\sa stopAnimation isAnimated
|
||||
|
@ -95,8 +95,8 @@ public slots:
|
|||
*/
|
||||
void setColor(const QColor & color);
|
||||
protected:
|
||||
virtual void timerEvent(QTimerEvent * event);
|
||||
virtual void paintEvent(QPaintEvent * event);
|
||||
virtual void timerEvent(QTimerEvent * event) Q_DECL_OVERRIDE;
|
||||
virtual void paintEvent(QPaintEvent * event) Q_DECL_OVERRIDE;
|
||||
private:
|
||||
int m_angle;
|
||||
int m_timerId;
|
||||
|
|
2
src/3rdparty/fancylineedit/fancylineedit.cpp
vendored
2
src/3rdparty/fancylineedit/fancylineedit.cpp
vendored
|
@ -99,7 +99,7 @@ class FancyLineEditPrivate : public QObject
|
|||
public:
|
||||
explicit FancyLineEditPrivate(FancyLineEdit *parent);
|
||||
|
||||
virtual bool eventFilter(QObject *obj, QEvent *event);
|
||||
virtual bool eventFilter(QObject *obj, QEvent *event) Q_DECL_OVERRIDE;
|
||||
|
||||
FancyLineEdit *m_lineEdit;
|
||||
QPixmap m_pixmap[2];
|
||||
|
|
4
src/3rdparty/fancylineedit/fancylineedit.h
vendored
4
src/3rdparty/fancylineedit/fancylineedit.h
vendored
|
@ -45,7 +45,7 @@ class IconButton: public QAbstractButton
|
|||
Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap)
|
||||
public:
|
||||
explicit IconButton(QWidget *parent = 0);
|
||||
void paintEvent(QPaintEvent *event);
|
||||
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
|
||||
void setPixmap(const QPixmap &pixmap) { m_pixmap = pixmap; update(); }
|
||||
QPixmap pixmap() const { return m_pixmap; }
|
||||
float iconOpacity() { return m_iconOpacity; }
|
||||
|
@ -105,7 +105,7 @@ private slots:
|
|||
void iconClicked();
|
||||
|
||||
protected:
|
||||
virtual void resizeEvent(QResizeEvent *e);
|
||||
virtual void resizeEvent(QResizeEvent *e) Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
void updateMargins();
|
||||
|
|
|
@ -50,7 +50,7 @@ public:
|
|||
|
||||
void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
|
||||
QWidget* activationWindow() const;
|
||||
bool event(QEvent *event);
|
||||
bool event(QEvent *event) Q_DECL_OVERRIDE;
|
||||
|
||||
QString applicationId() const;
|
||||
void setBlock(bool value);
|
||||
|
|
|
@ -27,17 +27,17 @@ public:
|
|||
|
||||
QString _user;
|
||||
QString _password;
|
||||
void syncContextPreInit(CSYNC* ctx);
|
||||
void syncContextPreStart(CSYNC* ctx);
|
||||
bool changed(AbstractCredentials* credentials) const;
|
||||
QString authType() const;
|
||||
QString user() const;
|
||||
QNetworkAccessManager* getQNAM() const;
|
||||
bool ready() const;
|
||||
bool stillValid(QNetworkReply *reply);
|
||||
void fetch(Account*);
|
||||
void persist(Account*);
|
||||
void invalidateToken(Account *) {}
|
||||
void syncContextPreInit(CSYNC* ctx) Q_DECL_OVERRIDE;
|
||||
void syncContextPreStart(CSYNC* ctx) Q_DECL_OVERRIDE;
|
||||
bool changed(AbstractCredentials* credentials) const Q_DECL_OVERRIDE;
|
||||
QString authType() const Q_DECL_OVERRIDE;
|
||||
QString user() const Q_DECL_OVERRIDE;
|
||||
QNetworkAccessManager* getQNAM() const Q_DECL_OVERRIDE;
|
||||
bool ready() const Q_DECL_OVERRIDE;
|
||||
bool stillValid(QNetworkReply *reply) Q_DECL_OVERRIDE;
|
||||
void fetch(Account*) Q_DECL_OVERRIDE;
|
||||
void persist(Account*) Q_DECL_OVERRIDE;
|
||||
void invalidateToken(Account *) Q_DECL_OVERRIDE {}
|
||||
};
|
||||
|
||||
} // ns Mirall
|
||||
|
|
|
@ -85,7 +85,7 @@ public:
|
|||
HttpCredentialsAccessManager(const HttpCredentials *cred, QObject* parent = 0)
|
||||
: MirallAccessManager(parent), _cred(cred) {}
|
||||
protected:
|
||||
QNetworkReply *createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData) {
|
||||
QNetworkReply *createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData) Q_DECL_OVERRIDE {
|
||||
QByteArray credHash = QByteArray(_cred->user().toUtf8()+":"+_cred->password().toUtf8()).toBase64();
|
||||
QNetworkRequest req(request);
|
||||
req.setRawHeader(QByteArray("Authorization"), QByteArray("Basic ") + credHash);
|
||||
|
|
|
@ -38,19 +38,19 @@ public:
|
|||
HttpCredentials();
|
||||
HttpCredentials(const QString& user, const QString& password);
|
||||
|
||||
void syncContextPreInit(CSYNC* ctx);
|
||||
void syncContextPreStart(CSYNC* ctx);
|
||||
bool changed(AbstractCredentials* credentials) const;
|
||||
QString authType() const;
|
||||
QNetworkAccessManager* getQNAM() const;
|
||||
bool ready() const;
|
||||
void fetch(Account *account);
|
||||
bool stillValid(QNetworkReply *reply);
|
||||
void persist(Account *account);
|
||||
QString user() const;
|
||||
void syncContextPreInit(CSYNC* ctx) Q_DECL_OVERRIDE;
|
||||
void syncContextPreStart(CSYNC* ctx) Q_DECL_OVERRIDE;
|
||||
bool changed(AbstractCredentials* credentials) const Q_DECL_OVERRIDE;
|
||||
QString authType() const Q_DECL_OVERRIDE;
|
||||
QNetworkAccessManager* getQNAM() const Q_DECL_OVERRIDE;
|
||||
bool ready() const Q_DECL_OVERRIDE;
|
||||
void fetch(Account *account) Q_DECL_OVERRIDE;
|
||||
bool stillValid(QNetworkReply *reply) Q_DECL_OVERRIDE;
|
||||
void persist(Account *account) Q_DECL_OVERRIDE;
|
||||
QString user() const Q_DECL_OVERRIDE;
|
||||
QString password() const;
|
||||
QString queryPassword(bool *ok);
|
||||
void invalidateToken(Account *account);
|
||||
void invalidateToken(Account *account) Q_DECL_OVERRIDE;
|
||||
QString fetchUser(Account *account);
|
||||
|
||||
private Q_SLOTS:
|
||||
|
|
|
@ -27,14 +27,14 @@ class ShibbolethUserJob : public AbstractNetworkJob {
|
|||
public:
|
||||
explicit ShibbolethUserJob(Account *account, QObject* parent = 0);
|
||||
public slots:
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
signals:
|
||||
// is always emitted when the job is finished. user is empty in case of error.
|
||||
void userFetched(const QString &user);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ public:
|
|||
ShibbolethWebView(Account *account, ShibbolethCookieJar* jar, QWidget* parent = 0);
|
||||
~ShibbolethWebView();
|
||||
|
||||
void closeEvent(QCloseEvent *event);
|
||||
void closeEvent(QCloseEvent *event) Q_DECL_OVERRIDE;
|
||||
|
||||
Q_SIGNALS:
|
||||
void shibbolethCookieReceived(const QNetworkCookie &cookie, Account *account);
|
||||
|
|
|
@ -43,17 +43,17 @@ public:
|
|||
/* create a credidentials for an already connected account */
|
||||
ShibbolethCredentials(const QNetworkCookie &cookie, Account *acc);
|
||||
|
||||
void syncContextPreInit(CSYNC* ctx);
|
||||
void syncContextPreStart(CSYNC* ctx);
|
||||
bool changed(AbstractCredentials* credentials) const;
|
||||
QString authType() const;
|
||||
QString user() const;
|
||||
QNetworkAccessManager* getQNAM() const;
|
||||
bool ready() const;
|
||||
void fetch(Account *account);
|
||||
bool stillValid(QNetworkReply *reply);
|
||||
void persist(Account *account);
|
||||
void invalidateToken(Account *account);
|
||||
void syncContextPreInit(CSYNC* ctx) Q_DECL_OVERRIDE;
|
||||
void syncContextPreStart(CSYNC* ctx) Q_DECL_OVERRIDE;
|
||||
bool changed(AbstractCredentials* credentials) const Q_DECL_OVERRIDE;
|
||||
QString authType() const Q_DECL_OVERRIDE;
|
||||
QString user() const Q_DECL_OVERRIDE;
|
||||
QNetworkAccessManager* getQNAM() const Q_DECL_OVERRIDE;
|
||||
bool ready() const Q_DECL_OVERRIDE;
|
||||
void fetch(Account *account) Q_DECL_OVERRIDE;
|
||||
bool stillValid(QNetworkReply *reply) Q_DECL_OVERRIDE;
|
||||
void persist(Account *account) Q_DECL_OVERRIDE;
|
||||
void invalidateToken(Account *account) Q_DECL_OVERRIDE;
|
||||
|
||||
void showLoginWindow(Account*);
|
||||
|
||||
|
@ -62,7 +62,7 @@ public:
|
|||
static QByteArray shibCookieName();
|
||||
|
||||
public Q_SLOTS:
|
||||
void invalidateAndFetch(Account *account);
|
||||
void invalidateAndFetch(Account *account) Q_DECL_OVERRIDE;
|
||||
void slotHandleAuthentication(QNetworkReply*,QAuthenticator*);
|
||||
|
||||
private Q_SLOTS:
|
||||
|
|
|
@ -26,10 +26,10 @@ class OWNCLOUDSYNC_EXPORT CookieJar : public QNetworkCookieJar
|
|||
public:
|
||||
explicit CookieJar(QObject *parent = 0);
|
||||
~CookieJar();
|
||||
bool setCookiesFromUrl(const QList<QNetworkCookie> &cookieList, const QUrl &url);
|
||||
QList<QNetworkCookie> cookiesForUrl(const QUrl &url) const;
|
||||
bool setCookiesFromUrl(const QList<QNetworkCookie> &cookieList, const QUrl &url) Q_DECL_OVERRIDE;
|
||||
QList<QNetworkCookie> cookiesForUrl(const QUrl &url) const Q_DECL_OVERRIDE;
|
||||
|
||||
virtual bool deleteCookie(const QNetworkCookie & cookie);
|
||||
virtual bool deleteCookie(const QNetworkCookie & cookie) Q_DECL_OVERRIDE;
|
||||
void clearSessionCookies();
|
||||
|
||||
signals:
|
||||
|
|
|
@ -24,8 +24,8 @@ class FolderStatusModel : public QStandardItemModel
|
|||
{
|
||||
public:
|
||||
FolderStatusModel();
|
||||
virtual Qt::ItemFlags flags( const QModelIndex& ) const;
|
||||
QVariant data(const QModelIndex &index, int role) const;
|
||||
virtual Qt::ItemFlags flags( const QModelIndex& ) const Q_DECL_OVERRIDE;
|
||||
QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE;
|
||||
|
||||
};
|
||||
|
||||
|
@ -52,10 +52,10 @@ class FolderStatusDelegate : public QStyledItemDelegate
|
|||
WarningCount,
|
||||
SyncRunning
|
||||
};
|
||||
void paint( QPainter*, const QStyleOptionViewItem&, const QModelIndex& ) const;
|
||||
QSize sizeHint( const QStyleOptionViewItem&, const QModelIndex& ) const;
|
||||
void paint( QPainter*, const QStyleOptionViewItem&, const QModelIndex& ) const Q_DECL_OVERRIDE;
|
||||
QSize sizeHint( const QStyleOptionViewItem&, const QModelIndex& ) const Q_DECL_OVERRIDE;
|
||||
bool editorEvent( QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option,
|
||||
const QModelIndex& index );
|
||||
const QModelIndex& index ) Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
} // namespace Mirall
|
||||
|
|
|
@ -43,9 +43,9 @@ public:
|
|||
FolderWizardLocalPath();
|
||||
~FolderWizardLocalPath();
|
||||
|
||||
virtual bool isComplete() const;
|
||||
void initializePage();
|
||||
void cleanupPage();
|
||||
virtual bool isComplete() const Q_DECL_OVERRIDE;
|
||||
void initializePage() Q_DECL_OVERRIDE;
|
||||
void cleanupPage() Q_DECL_OVERRIDE;
|
||||
|
||||
void setFolderMap( const Folder::Map &fm ) { _folderMap = fm; }
|
||||
protected slots:
|
||||
|
@ -68,10 +68,10 @@ public:
|
|||
FolderWizardRemotePath();
|
||||
~FolderWizardRemotePath();
|
||||
|
||||
virtual bool isComplete() const;
|
||||
virtual bool isComplete() const Q_DECL_OVERRIDE;
|
||||
|
||||
virtual void initializePage();
|
||||
virtual void cleanupPage();
|
||||
virtual void initializePage() Q_DECL_OVERRIDE;
|
||||
virtual void cleanupPage() Q_DECL_OVERRIDE;
|
||||
|
||||
protected slots:
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ public:
|
|||
void setLogFile(const QString& , bool );
|
||||
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *);
|
||||
void closeEvent(QCloseEvent *) Q_DECL_OVERRIDE;
|
||||
|
||||
protected slots:
|
||||
void slotNewLog( const QString &msg );
|
||||
|
|
|
@ -28,7 +28,7 @@ public:
|
|||
MirallAccessManager(QObject* parent = 0);
|
||||
|
||||
protected:
|
||||
QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest& request, QIODevice* outgoingData = 0);
|
||||
QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest& request, QIODevice* outgoingData = 0) Q_DECL_OVERRIDE;
|
||||
protected slots:
|
||||
void slotProxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator);
|
||||
};
|
||||
|
|
|
@ -114,13 +114,13 @@ class OWNCLOUDSYNC_EXPORT EntityExistsJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit EntityExistsJob(Account *account, const QString &path, QObject* parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
signals:
|
||||
void exists(QNetworkReply*);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -130,13 +130,13 @@ class OWNCLOUDSYNC_EXPORT LsColJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit LsColJob(Account *account, const QString &path, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
signals:
|
||||
void directoryListing(const QStringList &items);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -146,7 +146,7 @@ class PropfindJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit PropfindJob(Account *account, const QString &path, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
void setProperties(QList<QByteArray> properties);
|
||||
QList<QByteArray> properties() const;
|
||||
|
||||
|
@ -154,7 +154,7 @@ signals:
|
|||
void result(const QVariantMap &values);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
QList<QByteArray> _properties;
|
||||
|
@ -167,13 +167,13 @@ class OWNCLOUDSYNC_EXPORT MkColJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit MkColJob(Account *account, const QString &path, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
signals:
|
||||
void finished(QNetworkReply::NetworkError);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -183,7 +183,7 @@ class OWNCLOUDSYNC_EXPORT CheckServerJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit CheckServerJob(Account *account, bool followRedirect = false, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
static QString version(const QVariantMap &info);
|
||||
static QString versionString(const QVariantMap &info);
|
||||
|
@ -195,8 +195,8 @@ signals:
|
|||
void timeout(const QUrl&url);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual void slotTimeout();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
virtual void slotTimeout() Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
bool _followRedirects;
|
||||
|
@ -212,13 +212,13 @@ class RequestEtagJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit RequestEtagJob(Account *account, const QString &path, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
signals:
|
||||
void etagRetreived(const QString &etag);
|
||||
|
||||
private slots:
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -228,14 +228,14 @@ class CheckQuotaJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit CheckQuotaJob(Account *account, const QString &path, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
signals:
|
||||
void quotaRetrieved(qint64 totalBytes, qint64 availableBytes);
|
||||
|
||||
private slots:
|
||||
/** Return true if you want the job to be deleted after this slot has finished running. */
|
||||
virtual bool finished();
|
||||
virtual bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
} // namespace Mirall
|
||||
|
|
|
@ -102,8 +102,8 @@ public:
|
|||
_subJobs.append(subJob);
|
||||
}
|
||||
|
||||
virtual void start();
|
||||
virtual void abort() {
|
||||
virtual void start() Q_DECL_OVERRIDE;
|
||||
virtual void abort() Q_DECL_OVERRIDE {
|
||||
if (_firstJob)
|
||||
_firstJob->abort();
|
||||
foreach (PropagatorJob *j, _subJobs)
|
||||
|
@ -168,7 +168,7 @@ class PropagateIgnoreJob : public PropagateItemJob {
|
|||
public:
|
||||
PropagateIgnoreJob(OwncloudPropagator* propagator,const SyncFileItem& item)
|
||||
: PropagateItemJob(propagator, item) {}
|
||||
void start() {
|
||||
void start() Q_DECL_OVERRIDE {
|
||||
SyncFileItem::Status status = _item._status;
|
||||
done(status == SyncFileItem::NoStatus ? SyncFileItem::FileIgnored : status, _item._errorString);
|
||||
}
|
||||
|
|
|
@ -35,22 +35,22 @@ class ValidateDavAuthJob : public AbstractNetworkJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
ValidateDavAuthJob(Account* account, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
signals:
|
||||
void authResult(QNetworkReply*);
|
||||
private slots:
|
||||
bool finished();
|
||||
bool finished() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
class DetermineAuthTypeJob : public AbstractNetworkJob {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DetermineAuthTypeJob(Account *account, QObject *parent = 0);
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
signals:
|
||||
void authType(WizardCommon::AuthType);
|
||||
private slots:
|
||||
bool finished();
|
||||
bool finished() Q_DECL_OVERRIDE;
|
||||
private:
|
||||
int _redirects;
|
||||
};
|
||||
|
|
|
@ -25,21 +25,21 @@ class ownCloudTheme : public Theme
|
|||
public:
|
||||
ownCloudTheme();
|
||||
|
||||
QString configFileName() const;
|
||||
QString about() const;
|
||||
QString configFileName() const Q_DECL_OVERRIDE;
|
||||
QString about() const Q_DECL_OVERRIDE;
|
||||
QPixmap splashScreen() const;
|
||||
|
||||
QIcon folderIcon( const QString& ) const;
|
||||
QIcon trayFolderIcon( const QString& ) const;
|
||||
QIcon folderDisabledIcon() const;
|
||||
QIcon applicationIcon() const;
|
||||
QIcon trayFolderIcon( const QString& ) const Q_DECL_OVERRIDE;
|
||||
QIcon folderDisabledIcon() const Q_DECL_OVERRIDE;
|
||||
QIcon applicationIcon() const Q_DECL_OVERRIDE;
|
||||
|
||||
QVariant customMedia(CustomMediaType type);
|
||||
QString helpUrl() const;
|
||||
QVariant customMedia(CustomMediaType type) Q_DECL_OVERRIDE;
|
||||
QString helpUrl() const Q_DECL_OVERRIDE;
|
||||
|
||||
QColor wizardHeaderBackgroundColor() const;
|
||||
QColor wizardHeaderTitleColor() const;
|
||||
QPixmap wizardHeaderLogo() const;
|
||||
QColor wizardHeaderBackgroundColor() const Q_DECL_OVERRIDE;
|
||||
QColor wizardHeaderTitleColor() const Q_DECL_OVERRIDE;
|
||||
QPixmap wizardHeaderLogo() const Q_DECL_OVERRIDE;
|
||||
private:
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ public:
|
|||
explicit PropagateUploadFileLegacy(OwncloudPropagator* propagator,const SyncFileItem& item)
|
||||
: PropagateNeonJob(propagator, item)
|
||||
, _chunked_done(0), _chunked_total_size(0), _previousFileSize(0) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
private:
|
||||
// Log callback for httpbf
|
||||
static void _log_callback(const char *func, const char *text, void*)
|
||||
|
@ -54,7 +54,7 @@ class PropagateDownloadFileLegacy: public PropagateNeonJob {
|
|||
public:
|
||||
explicit PropagateDownloadFileLegacy(OwncloudPropagator* propagator,const SyncFileItem& item)
|
||||
: PropagateNeonJob(propagator, item), _file(0) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
private:
|
||||
QFile *_file;
|
||||
QScopedPointer<ne_decompress, ScopedPointerHelpers> _decompress;
|
||||
|
|
|
@ -129,12 +129,12 @@ public:
|
|||
_file->seek(start);
|
||||
}
|
||||
|
||||
virtual qint64 writeData(const char* , qint64 ) {
|
||||
virtual qint64 writeData(const char* , qint64 ) Q_DECL_OVERRIDE {
|
||||
Q_ASSERT(!"write to read only device");
|
||||
return 0;
|
||||
}
|
||||
|
||||
virtual qint64 readData(char* data, qint64 maxlen) {
|
||||
virtual qint64 readData(char* data, qint64 maxlen) Q_DECL_OVERRIDE {
|
||||
maxlen = qMin(maxlen, chunkSize() - _read);
|
||||
if (maxlen == 0)
|
||||
return 0;
|
||||
|
@ -145,25 +145,25 @@ public:
|
|||
return ret;
|
||||
}
|
||||
|
||||
virtual bool atEnd() const {
|
||||
virtual bool atEnd() const Q_DECL_OVERRIDE {
|
||||
return _read >= chunkSize() || _file->atEnd();
|
||||
}
|
||||
|
||||
virtual qint64 size() const{
|
||||
virtual qint64 size() const Q_DECL_OVERRIDE{
|
||||
return _size;
|
||||
}
|
||||
|
||||
qint64 bytesAvailable() const
|
||||
qint64 bytesAvailable() const Q_DECL_OVERRIDE
|
||||
{
|
||||
return _size - _read + QIODevice::bytesAvailable();
|
||||
}
|
||||
|
||||
// random access, we can seek
|
||||
virtual bool isSequential() const{
|
||||
virtual bool isSequential() const Q_DECL_OVERRIDE{
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual bool seek ( qint64 pos ) {
|
||||
virtual bool seek ( qint64 pos ) Q_DECL_OVERRIDE {
|
||||
_read = pos;
|
||||
return _file->seek(pos + _start);
|
||||
}
|
||||
|
|
|
@ -61,9 +61,9 @@ public:
|
|||
const QMap<QByteArray, QByteArray> &headers, QObject* parent = 0)
|
||||
: AbstractNetworkJob(account, path, parent), _device(device), _headers(headers) {}
|
||||
|
||||
virtual void start();
|
||||
virtual void start() Q_DECL_OVERRIDE;
|
||||
|
||||
virtual bool finished() {
|
||||
virtual bool finished() Q_DECL_OVERRIDE {
|
||||
emit finishedSignal();
|
||||
return true;
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ public:
|
|||
return _errorString.isEmpty() ? reply()->errorString() : _errorString;
|
||||
};
|
||||
|
||||
virtual void slotTimeout();
|
||||
virtual void slotTimeout() Q_DECL_OVERRIDE;
|
||||
|
||||
|
||||
signals:
|
||||
|
@ -93,11 +93,11 @@ class PropagateUploadFileQNAM : public PropagateItemJob {
|
|||
public:
|
||||
PropagateUploadFileQNAM(OwncloudPropagator* propagator,const SyncFileItem& item)
|
||||
: PropagateItemJob(propagator, item), _startChunk(0), _currentChunk(0), _chunkCount(0), _transferId(0) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
private slots:
|
||||
void slotPutFinished();
|
||||
void slotUploadProgress(qint64,qint64);
|
||||
void abort();
|
||||
void abort() Q_DECL_OVERRIDE;
|
||||
void startNextChunk();
|
||||
void finalize(const Mirall::SyncFileItem&);
|
||||
};
|
||||
|
@ -123,8 +123,8 @@ public:
|
|||
const QMap<QByteArray, QByteArray> &headers,
|
||||
QObject* parent = 0);
|
||||
|
||||
virtual void start();
|
||||
virtual bool finished() {
|
||||
virtual void start() Q_DECL_OVERRIDE;
|
||||
virtual bool finished() Q_DECL_OVERRIDE {
|
||||
emit finishedSignal();
|
||||
return true;
|
||||
}
|
||||
|
@ -135,7 +135,7 @@ public:
|
|||
|
||||
SyncFileItem::Status errorStatus() { return _errorStatus; }
|
||||
|
||||
virtual void slotTimeout();
|
||||
virtual void slotTimeout() Q_DECL_OVERRIDE;
|
||||
|
||||
QByteArray &etag() { return _etag; }
|
||||
|
||||
|
@ -159,10 +159,10 @@ class PropagateDownloadFileQNAM : public PropagateItemJob {
|
|||
public:
|
||||
PropagateDownloadFileQNAM(OwncloudPropagator* propagator,const SyncFileItem& item)
|
||||
: PropagateItemJob(propagator, item), _startSize(0) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
private slots:
|
||||
void slotGetFinished();
|
||||
void abort();
|
||||
void abort() Q_DECL_OVERRIDE;
|
||||
void downloadFinished();
|
||||
void slotDownloadProgress(qint64,qint64);
|
||||
|
||||
|
|
|
@ -74,26 +74,26 @@ class PropagateLocalRemove : public PropagateItemJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
PropagateLocalRemove (OwncloudPropagator* propagator,const SyncFileItem& item) : PropagateItemJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
};
|
||||
class PropagateLocalMkdir : public PropagateItemJob {
|
||||
Q_OBJECT
|
||||
public:
|
||||
PropagateLocalMkdir (OwncloudPropagator* propagator,const SyncFileItem& item) : PropagateItemJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
|
||||
};
|
||||
class PropagateRemoteRemove : public PropagateNeonJob {
|
||||
Q_OBJECT
|
||||
public:
|
||||
PropagateRemoteRemove (OwncloudPropagator* propagator,const SyncFileItem& item) : PropagateNeonJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
};
|
||||
class PropagateRemoteMkdir : public PropagateNeonJob {
|
||||
Q_OBJECT
|
||||
public:
|
||||
PropagateRemoteMkdir (OwncloudPropagator* propagator,const SyncFileItem& item) : PropagateNeonJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
private:
|
||||
static void propfind_results(void *userdata, const ne_uri *uri, const ne_prop_result_set *set);
|
||||
friend class PropagateDirectory; // So it can access the _item;
|
||||
|
@ -102,13 +102,13 @@ class PropagateLocalRename : public PropagateItemJob {
|
|||
Q_OBJECT
|
||||
public:
|
||||
PropagateLocalRename (OwncloudPropagator* propagator,const SyncFileItem& item) : PropagateItemJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
};
|
||||
class PropagateRemoteRename : public PropagateNeonJob {
|
||||
Q_OBJECT
|
||||
public:
|
||||
PropagateRemoteRename (OwncloudPropagator* propagator,const SyncFileItem& item) : PropagateNeonJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
|
||||
|
@ -117,7 +117,7 @@ class UpdateMTimeAndETagJob : public PropagateNeonJob{
|
|||
Q_OBJECT
|
||||
public:
|
||||
UpdateMTimeAndETagJob (OwncloudPropagator* propagator, const SyncFileItem& item) : PropagateNeonJob(propagator, item) {}
|
||||
void start();
|
||||
void start() Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -49,8 +49,8 @@ public slots:
|
|||
void showActivityPage();
|
||||
|
||||
protected:
|
||||
void reject();
|
||||
void accept();
|
||||
void reject() Q_DECL_OVERRIDE;
|
||||
void accept() Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
Ui::SettingsDialog *_ui;
|
||||
|
|
|
@ -33,7 +33,7 @@ class SslErrorDialog;
|
|||
|
||||
class SslDialogErrorHandler : public AbstractSslErrorHandler {
|
||||
public:
|
||||
bool handleErrors(QList<QSslError> errors, QList<QSslCertificate> *certs, Account*);
|
||||
bool handleErrors(QList<QSslError> errors, QList<QSslCertificate> *certs, Account*) Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
class SslErrorDialog : public QDialog
|
||||
|
|
|
@ -20,7 +20,7 @@ class QSslCertificate;
|
|||
|
||||
class SimpleSslErrorHandler : public Mirall::AbstractSslErrorHandler {
|
||||
public:
|
||||
bool handleErrors(QList<QSslError> errors, QList<QSslCertificate> *certs, Mirall::Account*);
|
||||
bool handleErrors(QList<QSslError> errors, QList<QSslCertificate> *certs, Mirall::Account*) Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
#endif // SIMPLESSLERRORHANDLER_H
|
||||
|
|
|
@ -40,8 +40,8 @@ public:
|
|||
|
||||
bool performUpdate();
|
||||
|
||||
void checkForUpdate();
|
||||
void backgroundCheckForUpdate();
|
||||
void checkForUpdate() Q_DECL_OVERRIDE;
|
||||
void backgroundCheckForUpdate() Q_DECL_OVERRIDE;
|
||||
|
||||
QString statusString() const;
|
||||
int downloadState() const;
|
||||
|
@ -77,7 +77,7 @@ class NSISUpdater : public OCUpdater {
|
|||
public:
|
||||
enum UpdateState { NoUpdate = 0, UpdateAvailable, UpdateFailed };
|
||||
explicit NSISUpdater(const QUrl &url, QObject *parent = 0);
|
||||
bool handleStartup();
|
||||
bool handleStartup() Q_DECL_OVERRIDE;
|
||||
private slots:
|
||||
void slotSetSeenVersion();
|
||||
void slotDownloadFinished();
|
||||
|
@ -85,7 +85,7 @@ private slots:
|
|||
private:
|
||||
NSISUpdater::UpdateState updateStateOnStart();
|
||||
void showDialog(const UpdateInfo &info);
|
||||
void versionInfoArrived(const UpdateInfo &info);
|
||||
void versionInfoArrived(const UpdateInfo &info) Q_DECL_OVERRIDE;
|
||||
QScopedPointer<QTemporaryFile> _file;
|
||||
QString _targetFile;
|
||||
bool _showFallbackMessage;
|
||||
|
@ -98,10 +98,10 @@ class PassiveUpdateNotifier : public OCUpdater {
|
|||
Q_OBJECT
|
||||
public:
|
||||
explicit PassiveUpdateNotifier(const QUrl &url, QObject *parent = 0);
|
||||
bool handleStartup() { return false; }
|
||||
bool handleStartup() Q_DECL_OVERRIDE { return false; }
|
||||
|
||||
private:
|
||||
void versionInfoArrived(const UpdateInfo &info);
|
||||
void versionInfoArrived(const UpdateInfo &info) Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -26,9 +26,9 @@ public:
|
|||
~SparkleUpdater();
|
||||
|
||||
// unused in this updater
|
||||
void checkForUpdate();
|
||||
void backgroundCheckForUpdate();
|
||||
bool handleStartup() { return false; }
|
||||
void checkForUpdate() Q_DECL_OVERRIDE;
|
||||
void backgroundCheckForUpdate() Q_DECL_OVERRIDE;
|
||||
bool handleStartup() Q_DECL_OVERRIDE { return false; }
|
||||
private:
|
||||
class Private;
|
||||
Private *d;
|
||||
|
|
|
@ -24,7 +24,7 @@ class AbstractCredentials;
|
|||
class AbstractCredentialsWizardPage : public QWizardPage
|
||||
{
|
||||
public:
|
||||
void cleanupPage();
|
||||
void cleanupPage() Q_DECL_OVERRIDE;
|
||||
virtual AbstractCredentials* getCredentials() const = 0;
|
||||
};
|
||||
|
||||
|
|
|
@ -31,10 +31,10 @@ class OwncloudAdvancedSetupPage: public QWizardPage
|
|||
public:
|
||||
OwncloudAdvancedSetupPage();
|
||||
|
||||
virtual bool isComplete() const;
|
||||
virtual void initializePage();
|
||||
virtual int nextId() const;
|
||||
bool validatePage();
|
||||
virtual bool isComplete() const Q_DECL_OVERRIDE;
|
||||
virtual void initializePage() Q_DECL_OVERRIDE;
|
||||
virtual int nextId() const Q_DECL_OVERRIDE;
|
||||
bool validatePage() Q_DECL_OVERRIDE;
|
||||
QString localFolder() const;
|
||||
void setRemoteFolder( const QString& remoteFolder);
|
||||
void setMultipleFoldersExist( bool exist );
|
||||
|
|
|
@ -30,12 +30,12 @@ class OwncloudHttpCredsPage : public AbstractCredentialsWizardPage
|
|||
public:
|
||||
OwncloudHttpCredsPage();
|
||||
|
||||
AbstractCredentials* getCredentials() const;
|
||||
AbstractCredentials* getCredentials() const Q_DECL_OVERRIDE;
|
||||
|
||||
void initializePage();
|
||||
void cleanupPage();
|
||||
bool validatePage();
|
||||
int nextId() const;
|
||||
void initializePage() Q_DECL_OVERRIDE;
|
||||
void cleanupPage() Q_DECL_OVERRIDE;
|
||||
bool validatePage() Q_DECL_OVERRIDE;
|
||||
int nextId() const Q_DECL_OVERRIDE;
|
||||
void setConnected(bool connected);
|
||||
void setErrorString( const QString& err );
|
||||
void setConfigExists(bool config);
|
||||
|
|
|
@ -33,12 +33,12 @@ class OwncloudSetupPage: public QWizardPage
|
|||
public:
|
||||
OwncloudSetupPage();
|
||||
|
||||
virtual bool isComplete() const;
|
||||
virtual void initializePage();
|
||||
virtual int nextId() const;
|
||||
virtual bool isComplete() const Q_DECL_OVERRIDE;
|
||||
virtual void initializePage() Q_DECL_OVERRIDE;
|
||||
virtual int nextId() const Q_DECL_OVERRIDE;
|
||||
void setServerUrl( const QString& );
|
||||
void setAllowPasswordStorage( bool );
|
||||
bool validatePage();
|
||||
bool validatePage() Q_DECL_OVERRIDE;
|
||||
QString url() const;
|
||||
QString localFolder() const;
|
||||
void setRemoteFolder( const QString& remoteFolder);
|
||||
|
|
|
@ -33,17 +33,17 @@ class OwncloudShibbolethCredsPage : public AbstractCredentialsWizardPage
|
|||
public:
|
||||
OwncloudShibbolethCredsPage();
|
||||
|
||||
AbstractCredentials* getCredentials() const;
|
||||
AbstractCredentials* getCredentials() const Q_DECL_OVERRIDE;
|
||||
|
||||
void initializePage();
|
||||
int nextId() const;
|
||||
void initializePage() Q_DECL_OVERRIDE;
|
||||
int nextId() const Q_DECL_OVERRIDE;
|
||||
void setConnected();
|
||||
|
||||
Q_SIGNALS:
|
||||
void connectToOCUrl(const QString&);
|
||||
|
||||
public Q_SLOTS:
|
||||
void setVisible(bool visible);
|
||||
void setVisible(bool visible) Q_DECL_OVERRIDE;
|
||||
|
||||
private Q_SLOTS:
|
||||
void slotShibbolethCookieReceived(const QNetworkCookie&, Account*);
|
||||
|
|
|
@ -29,8 +29,8 @@ public:
|
|||
OwncloudWizardResultPage();
|
||||
~OwncloudWizardResultPage();
|
||||
|
||||
bool isComplete() const;
|
||||
void initializePage();
|
||||
bool isComplete() const Q_DECL_OVERRIDE;
|
||||
void initializePage() Q_DECL_OVERRIDE;
|
||||
void setRemoteFolder( const QString& remoteFolder);
|
||||
|
||||
public slots:
|
||||
|
|
Loading…
Reference in a new issue