]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.cpp
Actually do the layout update
[lyx.git] / src / Buffer.cpp
index 3c7f1cc1e0f46c26fc9170d643cff3b50def377f..34291542e89191be1a1d6f5ec63079cced7358de 100644 (file)
@@ -1830,7 +1830,7 @@ Buffer::ExportStatus Buffer::makeLaTeXFile(FileName const & fname,
                lyx_exit(1);
        }
 
-       d->texrow = move(os.texrow());
+       d->texrow = std::move(os.texrow());
 
        ofs.close();
        if (ofs.fail()) {
@@ -4253,6 +4253,13 @@ void Buffer::updateTitles() const
 }
 
 
+void Buffer::scheduleRedrawWorkAreas() const
+{
+       if (d->wa_)
+               d->wa_->scheduleRedraw();
+}
+
+
 void Buffer::resetAutosaveTimers() const
 {
        if (d->gui_)