Draft error log
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Filter activity
- Resolved by Benjamin Arnaud
48 const char *psz_cancel) 74 //------------------------------------------------------------------------------------------------- 75 // Private functions 76 //------------------------------------------------------------------------------------------------- 77 78 void DialogErrorModel::pushError(const DialogError & error) 49 79 { 50 DialogModel* that = static_cast<DialogModel*>(p_data); 51 emit that->progressDisplayed( dialogId, psz_title, psz_text, b_indeterminate, f_position, psz_cancel); 80 int row = m_data.count(); 81 82 beginInsertRows(QModelIndex(), row, row); 83 84 m_data.append(error); 85 86 endInsertRows(); added 1 commit
- 4546bf8f - qml/Dialogs: Update error handling with the global object