mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Make C++11 mandatory.
This commit is contained in:
@@ -28,8 +28,8 @@ EditGroupWidget::EditGroupWidget(QWidget* parent)
|
||||
, m_editGroupWidgetMain(new QWidget())
|
||||
, m_editGroupWidgetIcons(new EditWidgetIcons())
|
||||
, m_editWidgetProperties(new EditWidgetProperties())
|
||||
, m_group(Q_NULLPTR)
|
||||
, m_database(Q_NULLPTR)
|
||||
, m_group(nullptr)
|
||||
, m_database(nullptr)
|
||||
{
|
||||
m_mainUi->setupUi(m_editGroupWidgetMain);
|
||||
|
||||
@@ -142,8 +142,8 @@ void EditGroupWidget::cancel()
|
||||
|
||||
void EditGroupWidget::clear()
|
||||
{
|
||||
m_group = Q_NULLPTR;
|
||||
m_database = Q_NULLPTR;
|
||||
m_group = nullptr;
|
||||
m_database = nullptr;
|
||||
}
|
||||
|
||||
void EditGroupWidget::addTriStateItems(QComboBox* comboBox, bool inheritDefault)
|
||||
|
||||
Reference in New Issue
Block a user