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. // add location information and throw again.
e.par_id = id_; e.par_id = id_;
e.pos = i; e.pos = i;
throw(e); throw;
} }
if (close) if (close)
@ -2878,7 +2878,7 @@ void Paragraph::latex(BufferParams const & bparams,
// add location information and throw again. // add location information and throw again.
e.par_id = id(); e.par_id = id();
e.pos = i; e.pos = i;
throw(e); throw;
} }
} }
} }

View File

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

View File

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

View File

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