Skip to content
Commits on Source (6)
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
SET(CPACK_PACKAGE_VERSION_MINOR "18")
SET(CPACK_PACKAGE_VERSION_PATCH "21")
SET(CPACK_PACKAGE_VERSION_PATCH "22")
SET(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
SET(RELEASE_NAME "Las Palmas")
IF (POLICY CMP0048) # in CMake 3.0.0+
......
Blottiere Paul <blottiere.paul@gmail.com> 2018-07-20
Increases number of pages
Juergen E. Fischer <jef@norbit.de> 2018-07-17
osgeo4w: support newer cmake versions
Merge: 7ddfaaba46 01c0d20b2c
Salvatore Larosa <lrssvtml@gmail.com> 2018-07-15
Merge pull request #7375 from slarosa/fix_19283
[2.18LTR] Fix field calculator in not able to add a new field
Radoslaw Guzinski <radosuav@op.pl> 2018-07-10
[Processing] Display saved value of ParameterTableMultipleField in the modeler.
Salvatore Larosa <lrssvtml@gmail.com> 2018-07-10
fix indentation
Salvatore Larosa <lrssvtml@gmail.com> 2018-07-09
fix warning
Juergen E. Fischer <jef@norbit.de> 2018-07-06
spatialite provider: fix retrieval of unicode name of spatial index on views
Salvatore Larosa <lrssvtml@gmail.com> 2018-07-06
set precision to 0 if not defined
Even Rouault <even.rouault@spatialys.com> 2018-06-01
QgsVectorDataProvider::supportedType(): only checks field length and precision against min/max if they are defined (ie > 0). Fixes test_qgsauxiliarystorage.py and qgis_projectstoragetest
Even Rouault <even.rouault@spatialys.com> 2018-06-01
QgsVectorDataProvider::supportedType(): use -1 as the value for unspecified length/width (this is the default in QgsField constructor and QgsVectorDataProvider::NativeType())
Salvatore Larosa <lrssvtml@gmail.com> 2018-07-06
resolve conflict
Juergen E. Fischer <jef@norbit.de> 2018-07-05
db manager: also add newline when adding a unique id field (fixes #19343)
Juergen E. Fischer <jef@norbit.de> 2018-07-04
fix build with SIP 4.19.11 (fixes #19332)
Juergen E. Fischer <jef@norbit.de> 2018-07-04
[postgres][db2] username and authcfg are not mutually exclusive (followup 9ce55ca0)
Matthias Kuhn <matthias@opengis.ch> 2018-07-02
Allow updating SSL cert custom configuration
So far it was only possible to add a first configuration, changing the configuration later on would fail with a unique constraint error.
Juergen E. Fischer <jef@norbit.de> 2018-06-26
Add BWTA2017.gsb to srs.db (backport 44eb0f901)
ie.
sqlite3 resources/srs.db "INSERT INTO tbl_datum_transform VALUES(NULL,100017,4314,4258,9615,'BWTA2017.gsb',NULL,NULL,NULL,NULL,NULL,NULL,'Transformation for the German federal state of Baden-Wuerttemberg: Diese NTv2-Datei deckt das Gebiet von Baden-Wuerttemberg ab und ist daher ausschliesslich für die Transformation von Geo(fach)daten innerhalb von Baden-Wuerttemberg geeignet. Dieser Ansatz ist für Geo(fach)daten zu verwenden welche auf Basis der ALKIS Daten gefuehrt und erstellt werden.','For applications requiring an accuracy of better than 1 metre.',1,0,'3339');"
Merge: 294f8accee 70e03951ba
Matthias Kuhn <matthias@opengis.ch> 2018-06-25
Merge pull request #7307 from rldhont/processing-r-enconde-string-218
[Bugfix][Processing] R script: ParameterString has to be encoding
rldhont <rldhont@gmail.com> 2018-06-22
[Bugfix][Processing] R script: ParameterString has to be encoding
In Processing R script, each parameter is inserted in the script by rewriting
the file. So it's necessary to encode ParameterString to correctly write the
processing r script.
Merge: 9fba24a3f2 259290ab32
rldhont <rldhont@gmail.com> 2018-06-22
Merge pull request #7303 from rldhont/server-wms-getprint-autoupdate-legend-218
[Bugfix][Server] Display composer legend with auto update like the Desktop
Juergen E. Fischer <jef@norbit.de> 2018-06-22
Release of 2.18.21
rldhont <rldhont@gmail.com> 2018-06-22
[Bugfix][Server] Display composer legend with auto update like the Desktop
QGIS Server was not able to display auto update legend in composer since
2.18.x. To fix it we need to deactivate *auto update* and to provide the
the project layer tree.
rldhont <rldhont@gmail.com> 2018-06-21
 
[Server] Use Project selection color in GetPrint for 2.18
......@@ -39,4 +39,8 @@ print("sip_version_str:%s" % sipcfg.sip_version_str)
print("sip_bin:%s" % sipcfg.sip_bin)
print("default_sip_dir:%s" % sipcfg.default_sip_dir)
print("sip_inc_dir:%s" % sipcfg.sip_inc_dir)
if hasattr(sipcfg, "sip_mod_dir"):
print("sip_mod_dir:%s" % sipcfg.sip_mod_dir)
else:
# SIP 4.19.10+ has no sipcfg.sip_mod_dir
print("sip_mod_dir:%s" % sipcfg.sip_module_dir)
......@@ -96,6 +96,10 @@ MACRO(GENERATE_SIP_PYTHON_MODULE_CODE MODULE_NAME MODULE_SIP CPP_FILES)
ADD_DEFINITIONS( /bigobj )
ENDIF(MSVC)
IF(NOT SIP_VERSION_NUM LESS 267018)
SET(_sip_x ${_sip_x} -n sip)
ENDIF(NOT SIP_VERSION_NUM LESS 267018)
SET(SIPCMD ${SIP_BINARY_PATH} ${_sip_tags} -w -e ${_sip_x} ${SIP_EXTRA_OPTIONS} -j ${SIP_CONCAT_PARTS} -c ${CMAKE_CURRENT_BINARY_DIR}/${_module_path} ${_sip_includes} ${_abs_module_sip})
SET(SUPPRESS_SIP_WARNINGS FALSE CACHE BOOL "Hide SIP warnings")
MARK_AS_ADVANCED(SUPPRESS_SIP_WARNINGS)
......
qgis (2.18.22+dfsg-1~exp1) experimental; urgency=medium
[ Jürgen E. Fischer ]
* Release of 2.18.22
[ Bas Couwenberg ]
* New upstream release.
* Drop SIP 4.19.11 patch, included upstream.
* Update symbols for amd64.
-- Bas Couwenberg <sebastic@debian.org> Fri, 20 Jul 2018 20:36:41 +0200
qgis (2.18.21+dfsg-2) unstable; urgency=medium
* Add upstream patch to support SIP 4.19.11.
......
......@@ -111,7 +111,7 @@ Description: QGIS - architecture-independent data
This package contains architecture-independent supporting data files for use
with QGIS.
Package: libqgis-app2.18.21
Package: libqgis-app2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -122,7 +122,7 @@ Description: QGIS - shared app library
.
This package contains the shared app library.
Package: libqgis-core2.18.21
Package: libqgis-core2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -133,7 +133,7 @@ Description: QGIS - shared core library
.
This package contains the shared core library.
Package: libqgis-gui2.18.21
Package: libqgis-gui2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -144,7 +144,7 @@ Description: QGIS - shared gui library
.
This package contains the shared gui library.
Package: libqgis-analysis2.18.21
Package: libqgis-analysis2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -155,7 +155,7 @@ Description: QGIS - shared analysis library
.
This package contains the shared analysis library.
Package: libqgis-networkanalysis2.18.21
Package: libqgis-networkanalysis2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -166,7 +166,7 @@ Description: QGIS - shared network analysis library
.
This package contains the shared network analysis library.
Package: libqgisgrass7-2.18.21
Package: libqgisgrass7-2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -177,7 +177,7 @@ Description: QGIS - shared grass library
.
This package contains the shared grass library.
Package: libqgispython2.18.21
Package: libqgispython2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -208,7 +208,7 @@ Description: QGIS custom widgets for Qt Designer
.
This package contains a library to use specific QGIS widgets in Qt Designer.
Package: libqgis-server2.18.21
Package: libqgis-server2.18.22
Architecture: any
Section: libs
Depends: ${shlibs:Depends},
......@@ -229,14 +229,14 @@ Depends: grass-dev (>= 7.4.0),
libgsl-dev,
libpq-dev,
libproj-dev,
libqgis-app2.18.21 (= ${binary:Version}),
libqgis-core2.18.21 (= ${binary:Version}),
libqgis-gui2.18.21 (= ${binary:Version}),
libqgis-analysis2.18.21 (= ${binary:Version}),
libqgis-networkanalysis2.18.21 (= ${binary:Version}),
libqgis-server2.18.21 (= ${binary:Version}),
libqgisgrass7-2.18.21 (= ${binary:Version}),
libqgispython2.18.21 (= ${binary:Version}),
libqgis-app2.18.22 (= ${binary:Version}),
libqgis-core2.18.22 (= ${binary:Version}),
libqgis-gui2.18.22 (= ${binary:Version}),
libqgis-analysis2.18.22 (= ${binary:Version}),
libqgis-networkanalysis2.18.22 (= ${binary:Version}),
libqgis-server2.18.22 (= ${binary:Version}),
libqgisgrass7-2.18.22 (= ${binary:Version}),
libqgispython2.18.22 (= ${binary:Version}),
libqt4-dev (>= 4.7.0),
libsqlite3-dev,
python-qt4 (>= 4.1.0),
......@@ -343,7 +343,7 @@ Depends: python-qgis-common (= ${source:Version}),
python-six,
python-tz,
python-yaml,
libqgispython2.18.21,
libqgispython2.18.22,
${shlibs:Depends},
${python:Depends},
${misc:Depends},
......
# SymbolsHelper-Confirmed: 2.18.20 riscv64
libqgis_analysis.so.2.18.21 #PACKAGE# #MINVER#
libqgis_analysis.so.2.18.22 #PACKAGE# #MINVER#
_ZN12TriDecorator10calcNormalEddP8Vector3D@Base 2.0.1
_ZN12TriDecorator11getTriangleEddP7Point3DPiS1_S2_S1_S2_@Base 2.0.1
_ZN12TriDecorator11getTriangleEddP7Point3DS1_S1_@Base 2.0.1
......
# SymbolsHelper-Confirmed: 2.18.21 m68k
libqgis_app.so.2.18.21 #PACKAGE# #MINVER#
# SymbolsHelper-Confirmed: 2.18.22 amd64
libqgis_app.so.2.18.22 #PACKAGE# #MINVER#
(optional=templinst|arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386)_Z10qDeleteAllI5QListIPN13QFormInternal11DomPropertyEEEvRKT_@Base 2.14.18
(optional=templinst)_Z13qvariant_castI26QUiTranslatableStringValueET_RK8QVariant@Base 2.14.0
(optional=templinst|arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386)_Z13qvariant_castI5QIconET_RK8QVariant@Base 2.14.18
......@@ -3369,6 +3369,7 @@ libqgis_app.so.2.18.21 #PACKAGE# #MINVER#
(optional=templinst)_ZN5QListIP7QObjectE6appendERKS1_@Base 2.14.0
(optional=templinst)_ZN5QListIP7QObjectE9removeAllERKS1_@Base 2.14.0
(optional=templinst)_ZN5QListIP7QObjectEpLERKS2_@Base 2.14.0
(optional=templinst)_ZN5QListIP7QWidgetE13detach_helperEi@Base 2.18.22
(optional=templinst)_ZN5QListIP7QWidgetE9removeAllERKS1_@Base 2.14.0
(optional=templinst)_ZN5QListIPN13QFormInternal10DomIncludeEE13detach_helperEi@Base 2.14.0
(optional=templinst)_ZN5QListIPN13QFormInternal10DomIncludeEE18detach_helper_growEii@Base 2.14.0
......@@ -4393,12 +4394,17 @@ libqgis_app.so.2.18.21 #PACKAGE# #MINVER#
(optional=templinst)_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_@Base 2.18.17
(optional=templinst)_ZNSt6vectorIjSaIjEE17_M_realloc_insertIJRKjEEEvN9__gnu_cxx17__normal_iteratorIPjS1_EEDpOT_@Base 2.18.17
(optional=templinst)_ZNSt6vectorIsSaIsEE17_M_realloc_insertIJsEEEvN9__gnu_cxx17__normal_iteratorIPsS1_EEDpOT_@Base 2.18.17
(optional=templinst)_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIN9__gnu_cxx17__normal_iteratorIPcS4_EEEEvT_SA_St20forward_iterator_tag@Base 2.18.22
(optional=templinst)_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag@Base 2.18.22
(optional=templinst)_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPcEEvT_S7_St20forward_iterator_tag@Base 2.18.22
(optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED0Ev@Base 2.18.17
(optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED1Ev@Base 2.18.17
(optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED2Ev@Base 2.18.17
(optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_@Base 2.18.22
(optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE24_M_get_insert_unique_posERS7_@Base 2.18.17
(optional=templinst|arch=amd64 arm64 hppa m68k mips64el ppc64el riscv64)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS8_ERS7_@Base 2.18.17
(optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E@Base 2.18.17
(optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_iESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESJ_IJEEEEESt17_Rb_tree_iteratorIS8_ESt23_Rb_tree_const_iteratorIS8_EDpOT_@Base 2.18.22
(optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_iESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE24_M_get_insert_unique_posERS7_@Base 2.18.17
(optional=templinst|arch=amd64 arm64 hppa m68k mips64el ppc64el riscv64)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_iESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS8_ERS7_@Base 2.18.17
(optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_iESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E@Base 2.18.17
......@@ -4782,6 +4788,7 @@ libqgis_app.so.2.18.21 #PACKAGE# #MINVER#
_ZTVN13QFormInternal26QAbstractFormBuilderGadgetE@Base 2.14.0
(optional=templinst)_ZZN11QMetaTypeIdI26QUiTranslatableStringValueE14qt_metatype_idEvE11metatype_id@Base 2.14.0
(optional=templinst)_ZZN11QMetaTypeIdI5QListIP7QWidgetEE14qt_metatype_idEvE11metatype_id@Base 2.14.0
_ZplRK7QStringS1_@Base 2.18.22
(c++)"non-virtual thunk to QFormInternal::QAbstractFormBuilderGadget::~QAbstractFormBuilderGadget()@Base" 2.14.0
(c++)"non-virtual thunk to QgisApp::~QgisApp()@Base" 2.14.0
(c++)"non-virtual thunk to QgsAbout::~QgsAbout()@Base" 2.14.0
......
# SymbolsHelper-Confirmed: 2.18.21 arm64 i386 m68k mips ppc64 ppc64el s390x
libqgis_core.so.2.18.21 #PACKAGE# #MINVER#
# SymbolsHelper-Confirmed: 2.18.22 amd64
libqgis_core.so.2.18.22 #PACKAGE# #MINVER#
GEOPROJ4@Base 2.0.1
GEOWKT@Base 2.0.1
GEO_EPSG_CRS_AUTHID@Base 2.0.1
......@@ -13,6 +13,7 @@ libqgis_core.so.2.18.21 #PACKAGE# #MINVER#
(subst)_Z9qgsCalloc{size_t}{size_t}@Base 2.14.0
(subst)_Z9qgsMalloc{size_t}@Base 2.14.0
_ZN10QgsClipper14clippedLineWKBER14QgsConstWkbPtrRK12QgsRectangleR9QPolygonF@Base 2.18.17
_ZN10QgsClipper15clipLineSegmentEddddRdS0_S0_S0_@Base 2.18.22
_ZN10QgsClipper21connectSeparatedLinesEddddRK12QgsRectangleR9QPolygonF@Base 2.0.1
_ZN10QgsClipper5MAX_XE@Base 2.0.1
_ZN10QgsClipper5MAX_YE@Base 2.0.1
......@@ -1152,36 +1153,36 @@ libqgis_core.so.2.18.21 #PACKAGE# #MINVER#
_ZN14QgsApplication15activeThemePathEv@Base 2.0.1
_ZN14QgsApplication15authorsFilePathEv@Base 2.0.1
_ZN14QgsApplication15licenceFilePathEv@Base 2.0.1
_ZN14QgsApplication15mThemeName21821E@Base 2.18.21
_ZN14QgsApplication15mThemeName21822E@Base 2.18.22
_ZN14QgsApplication15settingsChangedEv@Base 2.14.5
_ZN14QgsApplication15shortNameRegExpEv@Base 2.14.0
_ZN14QgsApplication15userStyleV2PathEv@Base 2.0.1
_ZN14QgsApplication16defaultThemePathEv@Base 2.0.1
_ZN14QgsApplication16mConfigPath21821E@Base 2.18.21
_ZN14QgsApplication16mMaxThreads21821E@Base 2.18.21
_ZN14QgsApplication16mPluginPath21821E@Base 2.18.21
_ZN14QgsApplication16mPrefixPath21821E@Base 2.18.21
_ZN14QgsApplication16mConfigPath21822E@Base 2.18.22
_ZN14QgsApplication16mMaxThreads21822E@Base 2.18.22
_ZN14QgsApplication16mPluginPath21822E@Base 2.18.22
_ZN14QgsApplication16mPrefixPath21822E@Base 2.18.22
_ZN14QgsApplication16reportStyleSheetEv@Base 2.0.1
_ZN14QgsApplication16setAuthDbDirPathERK7QString@Base 2.14.0
_ZN14QgsApplication16sponsorsFilePathEv@Base 2.0.1
_ZN14QgsApplication16staticMetaObjectE@Base 2.0.1
_ZN14QgsApplication16userThemesFolderEv@Base 2.14.0
_ZN14QgsApplication17createThemeFolderEv@Base 2.14.0
_ZN14QgsApplication17mLibexecPath21821E@Base 2.18.21
_ZN14QgsApplication17mLibraryPath21821E@Base 2.18.21
_ZN14QgsApplication17mPkgDataPath21821E@Base 2.18.21
_ZN14QgsApplication17mUIThemeName21821E@Base 2.18.21
_ZN14QgsApplication17mLibexecPath21822E@Base 2.18.22
_ZN14QgsApplication17mLibraryPath21822E@Base 2.18.22
_ZN14QgsApplication17mPkgDataPath21822E@Base 2.18.22
_ZN14QgsApplication17mUIThemeName21822E@Base 2.18.22
_ZN14QgsApplication17restoreGdalDriverERK7QString@Base 2.14.0
_ZN14QgsApplication18defaultStyleV2PathEv@Base 2.0.1
_ZN14QgsApplication18mGdalSkipList21821E@Base 2.18.21
_ZN14QgsApplication18mGdalSkipList21822E@Base 2.18.22
_ZN14QgsApplication18qgisAuthDbFilePathEv@Base 2.14.0
_ZN14QgsApplication18qgisUserDbFilePathEv@Base 2.0.1
_ZN14QgsApplication18registerOgrDriversEv@Base 2.0.1
_ZN14QgsApplication18setDefaultSvgPathsERK11QStringList@Base 2.0.1
_ZN14QgsApplication19defaultThemesFolderEv@Base 2.14.0
_ZN14QgsApplication19emitSettingsChangedEv@Base 2.14.5
_ZN14QgsApplication19mAuthDbDirPath21821E@Base 2.18.21
_ZN14QgsApplication19mSystemEnvVars21821E@Base 2.18.21
_ZN14QgsApplication19mAuthDbDirPath21822E@Base 2.18.22
_ZN14QgsApplication19mSystemEnvVars21822E@Base 2.18.22
_ZN14QgsApplication19qgisSettingsDirPathEv@Base 2.0.1
_ZN14QgsApplication19translatorsFilePathEv@Base 2.0.1
_ZN14QgsApplication20contributorsFilePathEv@Base 2.0.1
......@@ -1189,18 +1190,18 @@ libqgis_core.so.2.18.21 #PACKAGE# #MINVER#
_ZN14QgsApplication21QGIS_APPLICATION_NAMEE@Base 2.4.0
_ZN14QgsApplication21composerTemplatePathsEv@Base 2.14.0
_ZN14QgsApplication21developersMapFilePathEv@Base 2.8.0
_ZN14QgsApplication21mBuildOutputPath21821E@Base 2.18.21
_ZN14QgsApplication21mBuildSourcePath21821E@Base 2.18.21
_ZN14QgsApplication21mDefaultSvgPaths21821E@Base 2.18.21
_ZN14QgsApplication21mBuildOutputPath21822E@Base 2.18.22
_ZN14QgsApplication21mBuildSourcePath21822E@Base 2.18.22
_ZN14QgsApplication21mDefaultSvgPaths21822E@Base 2.18.22
_ZN14QgsApplication22QGIS_ORGANIZATION_NAMEE@Base 2.4.0
_ZN14QgsApplication23applyGdalSkippedDriversEv@Base 2.0.1
_ZN14QgsApplication23mFileOpenEventList21821E@Base 2.18.21
_ZN14QgsApplication23mFileOpenEventList21822E@Base 2.18.22
_ZN14QgsApplication24QGIS_ORGANIZATION_DOMAINE@Base 2.4.0
_ZN14QgsApplication24setFileOpenEventReceiverEP7QObject@Base 2.0.1
_ZN14QgsApplication25mRunningFromBuildDir21821E@Base 2.18.21
_ZN14QgsApplication25mRunningFromBuildDir21822E@Base 2.18.22
_ZN14QgsApplication26absolutePathToRelativePathERK7QStringS2_@Base 2.14.0
_ZN14QgsApplication26relativePathToAbsolutePathERK7QStringS2_@Base 2.14.0
_ZN14QgsApplication27mFileOpenEventReceiver21821E@Base 2.18.21
_ZN14QgsApplication27mFileOpenEventReceiver21822E@Base 2.18.22
_ZN14QgsApplication4initE7QString@Base 2.0.1
_ZN14QgsApplication5eventEP6QEvent@Base 2.0.1
_ZN14QgsApplication6endianEv@Base 2.0.1
......@@ -3428,9 +3429,6 @@ libqgis_core.so.2.18.21 #PACKAGE# #MINVER#
(optional=templinst)_ZN17QgsImageOperation16runRectOperationINS_21GaussianBlurOperationEEEvR6QImageRT_@Base 2.8.0
_ZN17QgsImageOperation17FlipLineOperationclEPjii@Base 2.8.0
_ZN17QgsImageOperation17distanceTransformER6QImageRKNS_27DistanceTransformPropertiesE@Base 2.8.0
(optional=templinst)_ZN17QgsImageOperation17runPixelOperationINS_23ShadeFromArrayOperationEEEvR6QImageRT_@Base 2.14.18
(optional=templinst)_ZN17QgsImageOperation17runPixelOperationINS_28ConvertToArrayPixelOperationEEEvR6QImageRT_@Base 2.14.18
(optional=templinst)_ZN17QgsImageOperation17runPixelOperationINS_29MultiplyOpacityPixelOperationEEEvR6QImageRT_@Base 2.8.3
_ZN17QgsImageOperation18convertToGrayscaleER6QImageNS_13GrayscaleModeE@Base 2.8.0
_ZN17QgsImageOperation18grayscaleAverageOpERj@Base 2.8.0
_ZN17QgsImageOperation19adjustHueSaturationER6QImagedRK6QColord@Base 2.8.0
......@@ -10617,7 +10615,8 @@ libqgis_core.so.2.18.21 #PACKAGE# #MINVER#
(optional=templinst)_ZNKSt5ctypeIcE8do_widenEc@Base 2.18.17
(optional=templinst)_ZNSt6vectorIN8QgsLabel10labelpointESaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_@Base 2.14.18
(optional=templinst)_ZNSt6vectorISt4pairIidESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_@Base 2.14.18
(optional=templinst|arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386)_ZSt4swapI18QgsRendererRangeV2ENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS5_ESt18is_move_assignableIS5_EEE5valueEvE4typeERS5_SF_@Base 2.14.18
(optional=templinst)_ZNSt6vectorIiSaIiEE17_M_default_appendEm@Base 2.18.22
(optional=templinst|arch=!hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386)_ZSt4swapI18QgsRendererRangeV2ENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS5_ESt18is_move_assignableIS5_EEE5valueEvE4typeERS5_SF_@Base 2.14.18
(optional=templinst|arch=alpha armel mips mips64el mipsel)_ZSt4swapI21QgsRendererCategoryV2ENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS5_ESt18is_move_assignableIS5_EEE5valueEvE4typeERS5_SF_@Base 2.14.18
_ZTI10QgsCurveV2@Base 2.14.0
_ZTI10QgsDiagram@Base 2.0.1
......
# False positive, string not included in source.
libqgis-customwidgets: spelling-error-in-binary * WihT With
spelling-error-in-binary * WihT With
# SymbolsHelper-Confirmed: 2.18.21 amd64 arm64 m68k ppc64 ppc64el
libqgis_gui.so.2.18.21 #PACKAGE# #MINVER#
# SymbolsHelper-Confirmed: 2.18.22 amd64
libqgis_gui.so.2.18.22 #PACKAGE# #MINVER#
(optional=templinst|arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386 !x32)_Z10qDeleteAllI5QListIPN13QFormInternal11DomPropertyEEEvRKT_@Base 2.14.16
(optional=templinst)_Z13qvariant_castI26QUiTranslatableStringValueET_RK8QVariant@Base 2.0.1
(optional=templinst|arch=!amd64 !hurd-i386 !i386 !kfreebsd-amd64 !kfreebsd-i386 !x32)_Z13qvariant_castI5QIconET_RK8QVariant@Base 2.14.16
......@@ -3344,7 +3344,6 @@ libqgis_gui.so.2.18.21 #PACKAGE# #MINVER#
_ZN20QgsDataDefinedButton13intTranspDescEv@Base 2.0.1
_ZN20QgsDataDefinedButton13lineStyleDescEv@Base 2.8.0
_ZN20QgsDataDefinedButton13paperSizeDescEv@Base 2.6.0
(arch=amd64 armel i386 mips mips64el mipsel)_ZN20QgsDataDefinedButton13setExpressionERK7QString@Base 2.18.20
_ZN20QgsDataDefinedButton13showAssistantEv@Base 2.14.0
_ZN20QgsDataDefinedButton13unitsMmMuDescEv@Base 2.0.1
_ZN20QgsDataDefinedButton14blendModesDescEv@Base 2.0.1
......@@ -7566,6 +7565,7 @@ libqgis_gui.so.2.18.21 #PACKAGE# #MINVER#
(optional=templinst|arch=amd64 arm64 hppa hurd-i386 i386 kfreebsd-amd64 kfreebsd-i386 m68k powerpc powerpcspe ppc64 ppc64el riscv64 sparc64 x32)_ZN5QListIP7QObjectE13detach_helperEi@Base 2.0.1
(optional=templinst)_ZN5QListIP7QObjectE9removeAllERKS1_@Base 2.0.1
(optional=templinst)_ZN5QListIP7QObjectEpLERKS2_@Base 2.0.1
(optional=templinst)_ZN5QListIP7QWidgetE13detach_helperEi@Base 2.18.22
(optional=templinst)_ZN5QListIP7QWidgetE9removeAllERKS1_@Base 2.0.1
(optional=templinst)_ZN5QListIPN13QFormInternal10DomIncludeEE13detach_helperEi@Base 2.8.3
(optional=templinst)_ZN5QListIPN13QFormInternal10DomIncludeEE18detach_helper_growEii@Base 2.0.1
......
# SymbolsHelper-Confirmed: 2.18.19 i386
libqgis_networkanalysis.so.2.18.21 #PACKAGE# #MINVER#
libqgis_networkanalysis.so.2.18.22 #PACKAGE# #MINVER#
_ZN11QgsGraphArcC1Ev@Base 2.0.1
_ZN11QgsGraphArcC2Ev@Base 2.0.1
_ZN14QgsGraphVertexC1ERK8QgsPoint@Base 2.0.1
......
# SymbolsHelper-Confirmed: 2.18.21 amd64 armhf i386 ppc64 ppc64el s390x
libqgis_server.so.2.18.21 #PACKAGE# #MINVER#
# SymbolsHelper-Confirmed: 2.18.22 amd64
libqgis_server.so.2.18.22 #PACKAGE# #MINVER#
_ZN14QgsConfigCache11qt_metacallEN11QMetaObject4CallEiPPv@Base 2.8.0
_ZN14QgsConfigCache11qt_metacastEPKc@Base 2.8.0
_ZN14QgsConfigCache11removeEntryERK7QString@Base 2.18.17
......@@ -261,6 +261,7 @@ libqgis_server.so.2.18.21 #PACKAGE# #MINVER#
_ZNK22QgsServerProjectParser9layerNameERK11QDomElement@Base 2.8.0
_ZNK22QgsServerProjectParser9wcsLayersEv@Base 2.8.0
_ZNK22QgsServerProjectParser9wfsLayersEv@Base 2.8.0
(optional=templinst)_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag@Base 2.18.22
_ZTI14QgsConfigCache@Base 2.8.0
_ZTI15QgsServerFilter@Base 2.8.0
_ZTI16QgsAccessControl@Base 2.14.0
......