mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-21 12:38:12 -04:00
Fixed various Qt5 changes in the http code
This commit is contained in:
parent
aba4fa94be
commit
7f7753a004
16 changed files with 77 additions and 71 deletions
|
@ -14,7 +14,8 @@
|
|||
#ifndef ACCESSCONTROLDIALOG_H
|
||||
#define ACCESSCONTROLDIALOG_H
|
||||
|
||||
#include <QtGui/QDialog>
|
||||
#include <QDialog>
|
||||
#include <QScopedPointer>
|
||||
|
||||
class Entry;
|
||||
|
||||
|
@ -27,7 +28,7 @@ class AccessControlDialog : public QDialog
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AccessControlDialog(QWidget *parent = 0);
|
||||
explicit AccessControlDialog(QWidget *parent = nullptr);
|
||||
~AccessControlDialog();
|
||||
|
||||
void setUrl(const QString & url);
|
||||
|
@ -36,7 +37,7 @@ public:
|
|||
void setRemember(bool r);
|
||||
|
||||
private:
|
||||
Ui::AccessControlDialog *ui;
|
||||
QScopedPointer<Ui::AccessControlDialog> ui;
|
||||
};
|
||||
|
||||
#endif // ACCESSCONTROLDIALOG_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue