Remove unnecessary call to Buffer::setFileName. The buffer already knows its name.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36374 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2010-11-18 17:35:49 +00:00
parent 89f5c437a8
commit 4e394eb9c5

View File

@ -116,7 +116,7 @@ Buffer * checkAndLoadLyXFile(FileName const & filename, bool const acceptDirty)
// FIXME newFile() should probably be a member method of Application...
Buffer * newFile(string const & filename, string const & templatename,
bool const isNamed)
bool is_named)
{
// get a free buffer
Buffer * b = theBufferList().newBuffer(filename);
@ -143,13 +143,12 @@ Buffer * newFile(string const & filename, string const & templatename,
}
}
if (!isNamed) {
b->setUnnamed();
b->setFileName(filename);
} else
// in this case, the user chose the filename, so we assume that she
// really does want this file.
if (is_named)
// in this case, the user chose the filename, so we
// assume that she really does want this file.
b->markDirty();
else
b->setUnnamed();
b->setReadonly(false);
b->setFullyLoaded(true);