mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed another crash.
--HG-- branch : gsoc2014-dfighter
This commit is contained in:
parent
1cbcca259c
commit
63b6a03f85
1 changed files with 3 additions and 1 deletions
|
@ -191,7 +191,9 @@ void MissionCompilerSettingsPage::writeSettings()
|
|||
{
|
||||
for(int column = 0; column < m_ui.serversTableWidget->columnCount(); column++)
|
||||
{
|
||||
items << m_ui.serversTableWidget->item(row, column)->text();
|
||||
QTableWidgetItem *item = m_ui.serversTableWidget->item(row, column);
|
||||
if( item != NULL )
|
||||
items << item->text();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue