gtkmm: use prepend() instead of deprecated Gtk::ComboBoxText::prepend_text()

This commit is contained in:
Mads Kiilerich 2022-01-26 22:08:29 +01:00 committed by Robin Gareus
parent 09c6e68ae8
commit 1a0f862a0c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ PathsDialog::add_path() {
}
}
if (!dup) {
paths_list_view.prepend_text(dir);
paths_list_view.prepend(dir);
}
}
}