Skip to content

Commit aeae910

Browse files
author
wonder
committed
merge from trunk r10800:10850
git-svn-id: http://svn.osgeo.org/qgis/branches/symbology-ng-branch@11128 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 9bb4009 commit aeae910

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+161338
-35143
lines changed

i18n/qgis_ar.ts

+4,379-1,033
Large diffs are not rendered by default.

i18n/qgis_cs_CZ.ts

+4,459-690
Large diffs are not rendered by default.

i18n/qgis_de.ts

+6,730-2,439
Large diffs are not rendered by default.

i18n/qgis_el_GR.ts

+4,392-1,057
Large diffs are not rendered by default.

i18n/qgis_es.ts

+12,335-7,924
Large diffs are not rendered by default.

i18n/qgis_fr.ts

+4,585-258
Large diffs are not rendered by default.

i18n/qgis_he.ts

+4,390-1,055
Large diffs are not rendered by default.

i18n/qgis_hu.ts

+5,949-1,688
Large diffs are not rendered by default.

i18n/qgis_id.ts

+4,392-1,043
Large diffs are not rendered by default.

i18n/qgis_it.ts

+4,438-648
Large diffs are not rendered by default.

i18n/qgis_ja.ts

+4,379-985
Large diffs are not rendered by default.

i18n/qgis_ka_GE.ts

+4,397-913
Large diffs are not rendered by default.

i18n/qgis_lo.ts

+4,486-1,063
Large diffs are not rendered by default.

i18n/qgis_lt.ts

+4,390-1,045
Large diffs are not rendered by default.

i18n/qgis_lv.ts

+4,453-749
Large diffs are not rendered by default.

i18n/qgis_mn.ts

+4,372-945
Large diffs are not rendered by default.

i18n/qgis_nl.ts

+4,569-329
Large diffs are not rendered by default.

i18n/qgis_pl_PL.ts

+4,663-244
Large diffs are not rendered by default.

i18n/qgis_pt_BR.ts

+4,495-1,007
Large diffs are not rendered by default.

i18n/qgis_ro.ts

+4,358-939
Large diffs are not rendered by default.

i18n/qgis_ru.ts

+4,570-324
Large diffs are not rendered by default.

i18n/qgis_sk.ts

+4,499-1,022
Large diffs are not rendered by default.

i18n/qgis_sq_AL.ts

+4,487-1,052
Large diffs are not rendered by default.

i18n/qgis_sv.ts

+4,501-1,006
Large diffs are not rendered by default.

i18n/qgis_th.ts

+4,358-939
Large diffs are not rendered by default.

i18n/qgis_tr.ts

+4,403-901
Large diffs are not rendered by default.

i18n/qgis_vi.ts

+4,488-1,054
Large diffs are not rendered by default.

i18n/qgis_xh.ts

+18,836
Large diffs are not rendered by default.

i18n/qgis_zh_CN.ts

+4,488-1,058
Large diffs are not rendered by default.

i18n/qgis_zh_TW.ts

+4,491-1,031
Large diffs are not rendered by default.
722 Bytes
Loading
787 Bytes
Loading

python/core/qgsgeometry.sip

+6-6
Original file line numberDiff line numberDiff line change
@@ -272,16 +272,16 @@ not disjoint with existing polygons of the feature*/
272272
if wkbType is WKBPolygon, otherwise an empty list */
273273
QgsPolygon asPolygon();
274274

275-
/** return contents of the geometry as a polygon
276-
if wkbType is WKBPolygon, otherwise an empty list */
275+
/** return contents of the geometry as a multi point
276+
if wkbType is WKBMultiPint, otherwise an empty list */
277277
QgsMultiPoint asMultiPoint();
278278

279-
/** return contents of the geometry as a polygon
280-
if wkbType is WKBPolygon, otherwise an empty list */
279+
/** return contents of the geometry as a multi linestring
280+
if wkbType is WKBMultiLineString, otherwise an empty list */
281281
QgsMultiPolyline asMultiPolyline();
282282

283-
/** return contents of the geometry as a polygon
284-
if wkbType is WKBPolygon, otherwise an empty list */
283+
/** return contents of the geometry as a multi polygon
284+
if wkbType is WKBMultiPolygon, otherwise an empty list */
285285
QgsMultiPolygon asMultiPolygon();
286286

287287
/** return contents of the geometry as a list of geometries

python/core/qgsvectorlayer.sip

+20
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,26 @@ public:
381381
/**access range */
382382
RangeData &range(int idx);
383383

384+
/**Adds a new overlay to this class. QgsVectorLayer takes ownership of the object
385+
@note this method was added in version 1.1
386+
*/
387+
void addOverlay( QgsVectorOverlay* overlay /Transfer/);
388+
389+
/**Removes all overlays of a given type
390+
@note this method was added in version 1.1
391+
*/
392+
void removeOverlay( const QString& typeName );
393+
394+
/**Returns pointers to the overlays of this layer
395+
@note this method was added in version 1.1
396+
*/
397+
void vectorOverlays( QList<QgsVectorOverlay*>& overlayList /Out/);
398+
399+
/**Returns the (first) overlay of a type, e.g. diagram or label
400+
@note this method was added in version 1.1
401+
*/
402+
QgsVectorOverlay* findOverlayByType( const QString& typeName );
403+
384404
public slots:
385405

386406
/** Select feature by its ID, optionally emit signal selectionChanged() */

python/plugins/fTools/ftools_help.xml

+188-180
Large diffs are not rendered by default.

python/plugins/fTools/tools/doGeometry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def extractAsSimple( self, geom, tolerance ):
574574
if geom.isMultipart():
575575
multi_geom = geom.asMultiPolyline()
576576
for i in multi_geom:
577-
simple = self.simlifyLine( i, 1, tolerance )
577+
simple = self.simplifyLine( i, 1, tolerance )
578578
if simple is None:
579579
return None
580580
else:

0 commit comments

Comments
 (0)