X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDepTable.cpp;h=fdbbd46a0665dc504ff67508cb41208b8a39f5b6;hb=55a3dd7b346d29a52ba305a4558e9e380ef50f47;hp=91717b635c6da94074bfc3630fd19211e406de8e;hpb=e7bb71ff4ebf16351ab238b5cb7514173dd4f84d;p=lyx.git diff --git a/src/DepTable.cpp b/src/DepTable.cpp index 91717b635c..fdbbd46a06 100644 --- a/src/DepTable.cpp +++ b/src/DepTable.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * \author Jean-Marc Lasgouttes * \author Ben Stanley * @@ -130,7 +130,7 @@ bool DepTable::extchanged(string const & ext) const DepList::const_iterator cit = deplist.begin(); DepList::const_iterator end = deplist.end(); for (; cit != end; ++cit) { - if (suffixIs(cit->first.absFilename(), ext)) { + if (suffixIs(cit->first.absFileName(), ext)) { if (cit->second.changed()) return true; } @@ -144,7 +144,7 @@ bool DepTable::ext_exist(string const & ext) const DepList::const_iterator cit = deplist.begin(); DepList::const_iterator end = deplist.end(); for (; cit != end; ++cit) { - if (suffixIs(cit->first.absFilename(), ext)) { + if (suffixIs(cit->first.absFileName(), ext)) { return true; } } @@ -163,7 +163,7 @@ void DepTable::remove_files_with_extension(string const & suf) DepList::iterator cit = deplist.begin(); DepList::iterator end = deplist.end(); while (cit != end) { - if (suffixIs(cit->first.absFilename(), suf)) { + if (suffixIs(cit->first.absFileName(), suf)) { // Can't erase the current iterator, but we // can increment and then erase. // Deplist is a map so only the erased