Skip to content

Commit 6b6a1ba

Browse files
sebasticjef-n
authored andcommittedFeb 24, 2019
Fix spelling errors.
* cancelation -> cancellation * overal -> overall
1 parent 8673fca commit 6b6a1ba

File tree

73 files changed

+95
-95
lines changed

Some content is hidden

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

73 files changed

+95
-95
lines changed
 

‎doc/api_break.dox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1896,7 +1896,7 @@ QgsRasterCalculator {#qgis_api_break_3_0_QgsRasterCalculator}
18961896

18971897
- Cancelled (Result enum value) has been renamed to Canceled <!--#spellok-->
18981898
- processCalculation() now uses an optional QgsFeedback instead of QProgressDialog
1899-
for progress reports and cancelation.
1899+
for progress reports and cancellation.
19001900

19011901
QgsRasterDataProvider {#qgis_api_break_3_0_QgsRasterDataProvider}
19021902
---------------------
@@ -2581,15 +2581,15 @@ QgsRendererAbstractMetadata {#qgis_api_break_3_0_QgsRendererAbstractMetadata}
25812581
QgsGraphDirector {#qgis_api_break_3_0_QgsGraphDirector}
25822582
----------------
25832583

2584-
- makeGraph() now uses QgsFeedback for progress reporting and cancelation
2584+
- makeGraph() now uses QgsFeedback for progress reporting and cancellation
25852585
- buildProgress() signal was removed
25862586
- buildMessage() signal was removed
25872587

25882588
QgsVectorLayerDirector {#qgis_api_break_3_0_QgsVectorLayerDirector}
25892589
----------------------
25902590

25912591
- QgsVectorLayerDirector() constructor now expects a reference to QgsFeatureSource as the first argument
2592-
- makeGraph() now uses QgsFeedback for progress reporting and cancelation
2592+
- makeGraph() now uses QgsFeedback for progress reporting and cancellation
25932593

25942594
Processing {#qgis_api_break_3_0_Processing}
25952595
----------

‎doc/porting_processing.dox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Other porting notes
7474

7575
- Your algorithm's processAlgorithm methods should return a dict with output values. In the case of output feature sinks, the sink's ID string should be included in this dictionary.
7676

77-
- Since Processing algorithms can now be run in the background, it's important to implement support for cancelation in your algorithms. Whenever looping (or before/after calling lengthy operations) listen out for user cancelation via the provided feedback object. E.g.
77+
- Since Processing algorithms can now be run in the background, it's important to implement support for cancellation in your algorithms. Whenever looping (or before/after calling lengthy operations) listen out for user cancellation via the provided feedback object. E.g.
7878

7979
if feedback.isCanceled():
8080
break
@@ -93,7 +93,7 @@ object to pushInfo or reportError so that the lack of features is brought to use
9393

9494
- Don't write outputs using TableWriter or by directly creating a CSV file. Wherever possible use a feature sink instead so that the output is created as a proper vector layer. This allows other algorithms in a multi-step model to easily use the tabular outputs from the algorithm.
9595

96-
- To run another Processing algorithm as part of your algorithm, you can use processing.run(...). Make sure you pass the current context and feedback to processing.run to ensure that all temporary layer outputs are available to the executed algorithm, and that the executed algorithm can send feedback reports to the user (and correctly handle cancelation and progress reports!)
96+
- To run another Processing algorithm as part of your algorithm, you can use processing.run(...). Make sure you pass the current context and feedback to processing.run to ensure that all temporary layer outputs are available to the executed algorithm, and that the executed algorithm can send feedback reports to the user (and correctly handle cancellation and progress reports!)
9797

9898
- A new API contract exists for Processing. Now, only the c++ base class (e.g. those prefixed with "Qgs"), the gui wrappers, and the methods from processing.tools are considered stable, public API. All other Processing classes and methods are considered private and may change between QGIS versions. These should not be relied on by custom algorithms.
9999

0 commit comments

Comments
 (0)
Please sign in to comment.