~navit-project/navit/+git/trunk:no-fused-location

Last commit made on 2022-10-15
Get this branch:
git clone -b no-fused-location https://git.launchpad.net/~navit-project/navit/+git/trunk

Branch merges

Branch information

Name:
no-fused-location
Repository:
lp:~navit-project/navit/+git/trunk

Recent commits

a3f0630... by mvglasow <michael -at- vonglasow.com>

Fix:vehicle/android:Never use fused provider for precise location

Signed-off-by: mvglasow <michael -at- vonglasow.com>

54df123... by Michael von Glasow

Fix:ci:use F-Droid server version compatible with OS image (#1204)

Signed-off-by: mvglasow <michael -at- vonglasow.com>

Signed-off-by: mvglasow <michael -at- vonglasow.com>
Co-authored-by: mvglasow <michael -at- vonglasow.com>

e798254... by OLFDB <email address hidden>

Fix:doc:build:linux:Added missing dependency libspeechd-dev for Raspberry Pi OS.

4e37073... by Stefan Wildemann <email address hidden>

Merge pull request #1198 from bkoppelmann/warnings

Fix some of the many compiler warning

69d870e... by Stefan Wildemann <email address hidden>

fix:core:Forcefully terminate string read with fgets

cb4216d... by Bastian Koppelmann

Fix:gui:qt5_qml: Fix -Wunused-variable for proxy.c

This fixes the warning:

proxy.c:35:52: warning: unused variable ‘img’ [-Wunused-variable]
   35 | struct graphics_image *img;
      |

eb03d7e... by Bastian Koppelmann

Fix:gui/qt5_qml: Fix -Wreorder

member variables ought to be initialized in the same order as they are
declared. This fixes the warning:

qml_poi.h:47:13: warning: ‘PoiObject::m_icon’ will be initialized after [-Wreorder]
   47 | QString m_icon;
      | ^~~~~~

9279593... by Bastian Koppelmann

Fix:gui:qt5_qml: Fix -Wunused-variable

this fixes the warnings:

backend.cpp:176:25: warning: unused variable ‘nav’ [-Wunused-variable]
  176 | struct navigation * nav = NULL;
      | ^~~

691760e... by Bastian Koppelmann

Fix:gui:qt5_qml: Fix -Wwrite-strings warning

We assign string constants to a char* which will lead to an error if
anyone tries to write that pointer, as constant data is mapped
read-only. This patch makes these const char* pointers.
Fixes the warning:

backend.cpp:588:27: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  588 | _current_street = "Enter Street";
      | ^~~~~~~~~~~~~~

eb0fe23... by Bastian Koppelmann

Fix:graphics:qt5: Fix -Wunused-variable for QPainter

This fixes the warning:

QNavitQuick.cpp:170:15: warning: unused variable ‘painter’ [-Wunused-variable]
  170 | QPainter* painter = NULL;
      | ^~~~~~~