Skip to content

Commit

Permalink
Update API break dox
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 31, 2017
1 parent dbe2b34 commit 05ad0bc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions doc/api_break.dox
Expand Up @@ -1379,13 +1379,34 @@ QgsGraduatedSymbolRenderer {#qgis_api_break_3_0_QgsGraduatedSymbolRendere
- sizeScaleFieldChanged() and scaleMethodChanged() were removed. These settings are no longer exposed in the widget's GUI.


QgsGraph {#qgis_api_break_3_0_QgsGraph}
--------

- addEdge now explicitly takes the fromVertex as first argument, and toVertex as second argument. The original
API design was unclear due to the reversed methods in QgsGraphEdge and QgsGraphVertex.


QgsGraphBuilderInterface {#qgis_api_break_3_0_QgsGraphBuilderInterface}
------------------------

- destinationCrs() now returns a copy instead of a reference to the CRS. This has no effect on PyQGIS code, but c++
plugins calling this method will need to be updated.


QgsGraphEdge {#qgis_api_break_3_0_QgsGraphEdge}
------------

- outVertex() was renamed as toVertex() (yes, the original name was the opposite of the returned value!)
- inVertex() was renamed as fromVertex() (yes, the original name was the opposite of the returned value!)


QgsGraphVertex {#qgis_api_break_3_0_QgsGraphVertex}
--------------

- outEdges() was renamed as incomingEdges() (yes, the original name was the opposite of the returned value!)
- inEdges() was renamed as outgoingEdges() (yes, the original name was the opposite of the returned value!)


QgsEditorWidgetRegistry {#qgis_api_break_3_0_QgsEditorWidgetRegistry}
-----------------------

Expand Down Expand Up @@ -1777,6 +1798,13 @@ QgsNetworkAccessManager {#qgis_api_break_3_0_QgsNetworkAccessManager}
- deleteReply() was removed. Use abort() and deleteLayer() on the reply directly.
- requestSent signal was removed. This is no longer emitted.


QgsNetworkStrategy {#qgis_api_break_3_0_QgsNetworkStrategy}
------------------

- requiredAttributes() now returns a set of attributes, instead of a list


QgsNewVectorLayerDialog {#qgis_api_break_3_0_QgsNewVectorLayerDialog}
-----------------------

Expand Down

0 comments on commit 05ad0bc

Please sign in to comment.