mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Use Gtk::ComboBoxText::clear() instead of clear_items(), which only exists in newer gtkmm
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10783 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
02127298e7
commit
fd2124c83d
@ -74,7 +74,8 @@ void GBranch::update()
|
||||
BranchList const branchlist = controller().branchlist();
|
||||
string const cur_branch = controller().params().branch;
|
||||
|
||||
branchescombo_.clear_items();
|
||||
// FIXME: deprecated in favor of clear_items since gtkmm 2.8
|
||||
branchescombo_.clear();
|
||||
|
||||
const_iterator const begin = branchlist.begin();
|
||||
const_iterator const end = branchlist.end();
|
||||
|
Loading…
Reference in New Issue
Block a user