X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSession.cpp;h=16b6df7c61b2a3bca93cce9fb73dc85a256f3eba;hb=29b9dd8b2f89f3741375ff5494aad03f22c7514f;hp=8fc8fa23d84e2523d487cbc3950ad96003ad308c;hpb=fe85162a29893e98bd3426d15c9a9eb62aa90f6b;p=lyx.git diff --git a/src/Session.cpp b/src/Session.cpp index 8fc8fa23d8..16b6df7c61 100644 --- a/src/Session.cpp +++ b/src/Session.cpp @@ -144,8 +144,8 @@ void LastOpenedSection::read(istream & is) void LastOpenedSection::write(ostream & os) const { os << '\n' << sec_lastopened << '\n'; - for (size_t i = 0; i < lastopened.size(); ++i) - os << lastopened[i].active << ", " << lastopened[i].file_name << '\n'; + for (auto const & last : lastopened) + os << last.active << ", " << last.file_name << '\n'; } @@ -158,8 +158,8 @@ void LastOpenedSection::add(FileName const & file, bool active) // currently, we even crash in some cases (see #9483). // FIXME: Add session support for multiple views of // the same buffer (split-view etc.). - for (size_t i = 0; i < lastopened.size(); ++i) { - if (lastopened[i].file_name == file) + for (auto const & last : lastopened) { + if (last.file_name == file) return; } lastopened.push_back(lof); @@ -283,7 +283,7 @@ void BookmarksSection::read(istream & is) continue; FileName const file(fname); // only load valid bookmarks - if (file.exists() && !file.isDirectory() && idx <= max_bookmarks) + if (file.exists() && !file.isDirectory() && idx < bookmarks.size()) bookmarks[idx] = Bookmark(file, pit, pos, 0, 0); else LYXERR(Debug::INIT, "LyX: Warning: Ignore bookmark of file: " << fname); @@ -297,7 +297,7 @@ void BookmarksSection::read(istream & is) void BookmarksSection::write(ostream & os) const { os << '\n' << sec_bookmarks << '\n'; - for (size_t i = 0; i <= max_bookmarks; ++i) { + for (size_t i = 0; i < bookmarks.size(); ++i) { if (isValid(i)) os << i << ", " << bookmarks[i].bottom_pit << ", " @@ -312,20 +312,20 @@ void BookmarksSection::save(FileName const & fname, int top_id, pos_type top_pos, unsigned int idx) { // silently ignore bookmarks when idx is out of range - if (idx <= max_bookmarks) + if (idx < bookmarks.size()) bookmarks[idx] = Bookmark(fname, bottom_pit, bottom_pos, top_id, top_pos); } bool BookmarksSection::isValid(unsigned int i) const { - return i <= max_bookmarks && !bookmarks[i].filename.empty(); + return i < bookmarks.size() && !bookmarks[i].filename.empty(); } bool BookmarksSection::hasValid() const { - for (size_t i = 1; i <= size(); ++i) { + for (size_t i = 1; i < bookmarks.size(); ++i) { if (isValid(i)) return true; } @@ -339,6 +339,20 @@ BookmarksSection::Bookmark const & BookmarksSection::bookmark(unsigned int i) co } +BookmarksSection::BookmarkPosList +BookmarksSection::bookmarksInPar(FileName const & fn, int const par_id) const +{ + // FIXME: we do not consider the case of bottom_pit. + // This is probably not a problem. + BookmarksSection::BookmarkPosList bip; + for (size_t i = 1; i < bookmarks.size(); ++i) + if (bookmarks[i].filename == fn && bookmarks[i].top_id == par_id) + bip.push_back({i, bookmarks[i].top_pos}); + + return bip; +} + + LastCommandsSection::LastCommandsSection(unsigned int num) : default_num_last_commands(30), absolute_max_last_commands(100) @@ -383,9 +397,9 @@ void LastCommandsSection::setNumberOfLastCommands(unsigned int no) } -void LastCommandsSection::add(std::string const & string) +void LastCommandsSection::add(std::string const & command) { - lastcommands.push_back(string); + lastcommands.push_back(command); }