Skip to content

Commit 0b0f34b

Browse files
authored
Change IExecutablesList.titleExists to contains to match UIBase name. (#157)
1 parent 1720aee commit 0b0f34b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mobase/wrappers/basic_classes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ namespace mo2::python {
223223
})
224224
.def("getByTitle", &IExecutablesList::getByTitle, "title"_a)
225225
.def("getByBinary", &IExecutablesList::getByBinary, "info"_a)
226-
.def("titleExists", &IExecutablesList::contains, "title"_a);
226+
.def("contains", &IExecutablesList::contains, "title"_a);
227227
}
228228

229229
void add_modinterface_classes(py::module_ m)

0 commit comments

Comments
 (0)