Convert explore package to kotlin (#6389)

* Convert WikidataItemDetailsActivity to kotlin

* Convert RecentSearchesDao to kotlin

* Convert RecentSearchesFragment to kotlin

* Convert ExploreListRootFragment to kotlin

* Convert the ParentViewPager to kotlin

* Convert ExploreMapRootFragment to kotlin

* Convert SearchActivity to kotlin

* Convert ExploreFragment to kotlin

* Convert ExploreMapCalls and ExploreMapContract to kotlin

* Convert ExploreMapController to kotlin

* Convert the map presenter to kotlin

* Convert the ExploreMapFragment to kotlin

* Fix import issue
This commit is contained in:
Paul Hawke 2025-08-03 21:44:00 -05:00 committed by GitHub
parent 516039c91d
commit 6f36cae767
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 3218 additions and 3499 deletions

View file

@ -33,7 +33,7 @@ class BookmarkFragment : CommonsDaggerSupportFragment() {
fun setScroll(canScroll: Boolean) {
binding?.let {
it.viewPagerBookmarks.isCanScroll = canScroll
it.viewPagerBookmarks.canScroll = canScroll
}
}