Skip to content
Snippets Groups Projects

Draft error log

Open Benjamin Arnaud requested to merge ci-log-error into master
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • 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

    Compare with previous version

  • Benjamin Arnaud added 2 commits

    added 2 commits

    • d0690466 - qt/dialogmodel: Update error handling before the GUI display
    • 65410196 - qml/Dialogs: Update error handling with the global object

    Compare with previous version

  • Please register or sign in to reply
    Loading