]> git.lyx.org Git - lyx.git/blobdiff - src/BufferList.cpp
Keep dialog connected to cross-ref inset after Apply.
[lyx.git] / src / BufferList.cpp
index 1a538d413f0ab1178e398b1fb70bb1cfb6b0caba..145c0c44a0ffc593b4b92da901323ca9f027b418 100644 (file)
@@ -128,7 +128,7 @@ Buffer * BufferList::createNewBuffer(string const & s)
 {
        unique_ptr<Buffer> tmpbuf;
        try {
-               tmpbuf = make_unique<Buffer>(s);
+               tmpbuf = lyx::make_unique<Buffer>(s);
        } catch (ExceptionMessage const & message) {
                if (message.type_ == ErrorException) {
                        Alert::error(message.title_, message.details_);