mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Formatting.
This commit is contained in:
parent
88b1c8d521
commit
87ce258627
@ -3536,7 +3536,8 @@ void GuiView::toolBarPopup(const QPoint & /*pos*/)
|
|||||||
|
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
Buffer::ExportStatus GuiView::GuiViewPrivate::runAndDestroy(const T& func, Buffer const * orig, Buffer * clone, string const & format)
|
Buffer::ExportStatus GuiView::GuiViewPrivate::runAndDestroy(const T& func,
|
||||||
|
Buffer const * orig, Buffer * clone, string const & format)
|
||||||
{
|
{
|
||||||
Buffer::ExportStatus const status = func(format);
|
Buffer::ExportStatus const status = func(format);
|
||||||
|
|
||||||
@ -3549,23 +3550,29 @@ Buffer::ExportStatus GuiView::GuiViewPrivate::runAndDestroy(const T& func, Buffe
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Buffer::ExportStatus GuiView::GuiViewPrivate::compileAndDestroy(Buffer const * orig, Buffer * clone, string const & format)
|
Buffer::ExportStatus GuiView::GuiViewPrivate::compileAndDestroy(
|
||||||
|
Buffer const * orig, Buffer * clone, string const & format)
|
||||||
{
|
{
|
||||||
Buffer::ExportStatus (Buffer::* mem_func)(std::string const &, bool) const = &Buffer::doExport;
|
Buffer::ExportStatus (Buffer::* mem_func)(std::string const &, bool) const =
|
||||||
|
&Buffer::doExport;
|
||||||
return runAndDestroy(lyx::bind(mem_func, clone, _1, true), orig, clone, format);
|
return runAndDestroy(lyx::bind(mem_func, clone, _1, true), orig, clone, format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Buffer::ExportStatus GuiView::GuiViewPrivate::exportAndDestroy(Buffer const * orig, Buffer * clone, string const & format)
|
Buffer::ExportStatus GuiView::GuiViewPrivate::exportAndDestroy(
|
||||||
|
Buffer const * orig, Buffer * clone, string const & format)
|
||||||
{
|
{
|
||||||
Buffer::ExportStatus (Buffer::* mem_func)(std::string const &, bool) const = &Buffer::doExport;
|
Buffer::ExportStatus (Buffer::* mem_func)(std::string const &, bool) const =
|
||||||
|
&Buffer::doExport;
|
||||||
return runAndDestroy(lyx::bind(mem_func, clone, _1, false), orig, clone, format);
|
return runAndDestroy(lyx::bind(mem_func, clone, _1, false), orig, clone, format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Buffer::ExportStatus GuiView::GuiViewPrivate::previewAndDestroy(Buffer const * orig, Buffer * clone, string const & format)
|
Buffer::ExportStatus GuiView::GuiViewPrivate::previewAndDestroy(
|
||||||
|
Buffer const * orig, Buffer * clone, string const & format)
|
||||||
{
|
{
|
||||||
Buffer::ExportStatus (Buffer::* mem_func)(std::string const &) const = &Buffer::preview;
|
Buffer::ExportStatus (Buffer::* mem_func)(std::string const &) const =
|
||||||
|
&Buffer::preview;
|
||||||
return runAndDestroy(lyx::bind(mem_func, clone, _1), orig, clone, format);
|
return runAndDestroy(lyx::bind(mem_func, clone, _1), orig, clone, format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user