Fix GCC 6 warnings, thanks Remi Collet

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4442 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-04-16 17:45:56 +00:00
parent f7f75be332
commit b6886defbd
2 changed files with 26 additions and 11 deletions

View File

@@ -172,12 +172,15 @@ void ElementPropertiesWidget::updateUi()
//Purge the tab widget and delete all widget
m_tab->clear();
qDeleteAll(m_list_editor); m_list_editor.clear();
if(m_general_widget) delete m_general_widget; m_general_widget = nullptr;
qDeleteAll(m_list_editor);
m_list_editor.clear();
if(m_general_widget) {
delete m_general_widget;
m_general_widget = nullptr;
}
//Create editor according to the type of element
switch (m_element -> linkType())
{
switch (m_element -> linkType()) {
case Element::Simple:
m_list_editor << new ElementInfoWidget(m_element, this);
break;