mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: fix deprecated QFlags use
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
484a50b6a8
commit
f871b8dfac
12 changed files with 18 additions and 18 deletions
|
@ -39,7 +39,7 @@
|
|||
#define PATH_MAX 4096
|
||||
#endif
|
||||
|
||||
WebServices::WebServices(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f), reply(0)
|
||||
WebServices::WebServices(QWidget *parent) : QDialog(parent, QFlag(0)), reply(0)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *)));
|
||||
|
@ -252,7 +252,7 @@ void DivelogsDeWebServices::prepareDivesForUpload(bool selected)
|
|||
exec();
|
||||
}
|
||||
|
||||
DivelogsDeWebServices::DivelogsDeWebServices(QWidget *parent, Qt::WindowFlags f) : WebServices(parent, f),
|
||||
DivelogsDeWebServices::DivelogsDeWebServices(QWidget *parent) : WebServices(parent),
|
||||
uploadMode(false)
|
||||
{
|
||||
// should DivelogDE user and pass be stored in the prefs struct or something?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue