Right exception rethrowing

This commit is contained in:
Yuriy Skalko 2020-10-09 20:42:51 +03:00 committed by Jean-Marc Lasgouttes
parent 919a06718a
commit 238fd9ac50
4 changed files with 7 additions and 7 deletions

View File

@ -1103,7 +1103,7 @@ void Paragraph::Private::latexInset(BufferParams const & bparams,
// add location information and throw again.
e.par_id = id_;
e.pos = i;
throw(e);
throw;
}
if (close)
@ -2878,7 +2878,7 @@ void Paragraph::latex(BufferParams const & bparams,
// add location information and throw again.
e.par_id = id();
e.pos = i;
throw(e);
throw;
}
}
}

View File

@ -557,7 +557,7 @@ void SpellcheckerWidget::Private::check()
Alert::warning(message.title_, message.details_);
return;
}
throw message;
throw;
}
// end of document or selection?

View File

@ -2412,7 +2412,7 @@ Buffer * GuiView::loadDocument(FileName const & filename, bool tolastfiles)
newBuffer = checkAndLoadLyXFile(filename);
} catch (ExceptionMessage const & e) {
setBusy(false);
throw(e);
throw;
}
setBusy(false);
@ -4878,7 +4878,7 @@ void GuiView::doShowDialog(QString const & qname, QString const & qdata,
}
catch (ExceptionMessage const & ex) {
d.in_show_ = false;
throw ex;
throw;
}
d.in_show_ = false;
}

View File

@ -1454,7 +1454,7 @@ void writeString(docstring const & s, WriteStream & os)
case WriteStream::wsDefault:
default:
// throw again
throw(e);
throw;
}
}
}
@ -1528,7 +1528,7 @@ void writeString(docstring const & s, WriteStream & os)
case WriteStream::wsDefault:
default:
// throw again
throw(e);
throw;
}
}
}