Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2016-02-28 18:52:02 +0300
committerJonathan White <support@dmapps.us>2016-02-28 18:52:02 +0300
commit7f7753a004749997b931e1ee079ee316b1175f08 (patch)
treedc2cbd86e04435af091591d778c7c13c47844905 /src/http/OptionDialog.cpp
parentaba4fa94be64bf5556cb63b74ed8793f80734130 (diff)
Fixed various Qt5 changes in the http code
Diffstat (limited to 'src/http/OptionDialog.cpp')
-rw-r--r--src/http/OptionDialog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/http/OptionDialog.cpp b/src/http/OptionDialog.cpp
index be2eb5fdf..357a3cd7f 100644
--- a/src/http/OptionDialog.cpp
+++ b/src/http/OptionDialog.cpp
@@ -17,7 +17,7 @@
OptionDialog::OptionDialog(QWidget *parent) :
QWidget(parent),
- ui(new Ui::OptionDialog)
+ ui(new Ui::OptionDialog())
{
ui->setupUi(this);
connect(ui->removeSharedEncryptionKeys, SIGNAL(clicked()), this, SIGNAL(removeSharedEncryptionKeys()));
@@ -26,7 +26,6 @@ OptionDialog::OptionDialog(QWidget *parent) :
OptionDialog::~OptionDialog()
{
- delete ui;
}
void OptionDialog::loadSettings()