mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Right exception rethrowing
This commit is contained in:
parent
919a06718a
commit
238fd9ac50
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -557,7 +557,7 @@ void SpellcheckerWidget::Private::check()
|
||||
Alert::warning(message.title_, message.details_);
|
||||
return;
|
||||
}
|
||||
throw message;
|
||||
throw;
|
||||
}
|
||||
|
||||
// end of document or selection?
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user