mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
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:
parent
89f5c437a8
commit
4e394eb9c5
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user