]> git.lyx.org Git - lyx.git/blobdiff - src/CutAndPaste.C
Move #includes out of header files.
[lyx.git] / src / CutAndPaste.C
index ff2bea62ab27875b3733860787ba12ddac32b3a7..627067bcee7ae07c9e1d535cabe92596084643ce 100644 (file)
@@ -68,7 +68,7 @@ CutAndPaste::availableSelections(Buffer const & buffer)
                ParagraphList::const_iterator pit = pars.begin();
                ParagraphList::const_iterator pend = pars.end();
                for (; pit != pend; ++pit) {
-                       asciiSel += pit->asString(&buffer, false);
+                       asciiSel += pit->asString(buffer, false);
                        if (asciiSel.size() > 25) {
                                asciiSel.replace(22, string::npos, "...");
                                break;