florb rebuild with omake.

This commit is contained in:
uglyside
2024-12-22 10:40:56 +03:00
parent 49d2d05f71
commit 4b57072a05
8 changed files with 1743 additions and 768 deletions
@@ -0,0 +1,16 @@
diff --git a/src/dlg_search_ex.cpp b/src/dlg_search_ex.cpp
index 6e00773..da5a692 100644
--- a/src/dlg_search_ex.cpp
+++ b/src/dlg_search_ex.cpp
@@ -66,9 +66,9 @@ void dlg_search::cb_btn_search_ex(Fl_Widget *widget)
// Construct query string
std::ostringstream oss;
- oss << "http://nominatim.openstreetmap.org/search/";
+ oss << "https://nominatim.openstreetmap.org/search?q=";
oss << query;
- oss << "?format=xml";
+ oss << "&format=xml";
// Download the search results
bool ret = m_downloader->queue(oss.str(), NULL);