X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.h;h=534fb87f32c30b210da582591d0302d4d2c9dd37;hb=294e4884ee29585d311177406cd31499e6d81877;hp=e3e18e1c71f49ba2ae9f305a43633052545318cd;hpb=c8faa01f4ffcd22b9e2f108e5ca2b4ba189aa9c1;p=lyx.git diff --git a/src/BranchList.h b/src/BranchList.h index e3e18e1c71..534fb87f32 100644 --- a/src/BranchList.h +++ b/src/BranchList.h @@ -97,12 +97,12 @@ public: docstring separator() const { return separator_; } /// - bool empty() const { return list.empty(); } + bool empty() const { return list_.empty(); } /// - void clear() { list.clear(); } + void clear() { list_.clear(); } /// - const_iterator begin() const { return list.begin(); } - const_iterator end() const { return list.end(); } + const_iterator begin() const { return list_.begin(); } + const_iterator end() const { return list_.end(); } /** \returns the Branch with \c name. If not found, returns 0. */ @@ -128,7 +128,7 @@ public: private: /// - List list; + List list_; /// docstring separator_; };