More spelling fixes

This commit is contained in:
Nyall Dawson 2018-03-12 12:30:50 +10:00
parent b82ec177c9
commit f06b3691c5
8 changed files with 14 additions and 11 deletions

2
NEWS
View File

@ -85,7 +85,7 @@ This release has following new features:
- Symbology: Annotations can be styled using fill symbol styles
- Symbology: Point cluster renderer
- Labeling: Allow label font size in mm/pixels
- Labeling: Custom labelling toolbar is now always enabled
- Labeling: Custom labeling toolbar is now always enabled
- Diagrams: Data definable properties
- Rendering: Grid renderer for points displacement
- Rendering: Live layer support

View File

@ -165,7 +165,7 @@ This release has following new features:
<LI>Symbology: Annotations can be styled using fill symbol styles
<LI>Symbology: Point cluster renderer
<LI>Labeling: Allow label font size in mm/pixels
<LI>Labeling: Custom labelling toolbar is now always enabled
<LI>Labeling: Custom labeling toolbar is now always enabled
<LI>Diagrams: Data definable properties
<LI>Rendering: Grid renderer for points displacement
<LI>Rendering: Live layer support

View File

@ -77,7 +77,7 @@ This release has following new features:
- Symbology: Annotations can be styled using fill symbol styles
- Symbology: Point cluster renderer
- Labeling: Allow label font size in mm/pixels
- Labeling: Custom labelling toolbar is now always enabled
- Labeling: Custom labeling toolbar is now always enabled
- Diagrams: Data definable properties
- Rendering: Grid renderer for points displacement
- Rendering: Live layer support

View File

@ -13,7 +13,7 @@
class QgsLabelSearchTree
{
%Docstring
A class to query the labeling structure at a given point (small wraper around pal RTree class)
A class to query the labeling structure at a given point (small wrapper around pal RTree class)
%End
%TypeHeaderCode

View File

@ -51,10 +51,10 @@ WIDGET, BASE = uic.loadUiType(
os.path.join(pluginPath, 'ui', 'widgetBaseSelector.ui'))
class ModellerNumberInputPanel(BASE, WIDGET):
class ModelerNumberInputPanel(BASE, WIDGET):
"""
Number input panel for use inside the modeller - this input panel
Number input panel for use inside the modeler - this input panel
is based off the base input panel and includes a text based line input
for entering values. This allows expressions and other non-numeric
values to be set, which are later evalauted to numbers when the model
@ -64,7 +64,7 @@ class ModellerNumberInputPanel(BASE, WIDGET):
hasChanged = pyqtSignal()
def __init__(self, param, modelParametersDialog):
super(ModellerNumberInputPanel, self).__init__(None)
super().__init__(None)
self.setupUi(self)
self.param = param
@ -126,7 +126,7 @@ class ModellerNumberInputPanel(BASE, WIDGET):
class NumberInputPanel(NUMBER_BASE, NUMBER_WIDGET):
"""
Number input panel for use outside the modeller - this input panel
Number input panel for use outside the modeler - this input panel
contains a user friendly spin box for entering values.
"""

View File

@ -102,7 +102,7 @@ from qgis.utils import iface
from processing.core.ProcessingConfig import ProcessingConfig
from processing.modeler.MultilineTextPanel import MultilineTextPanel
from processing.gui.NumberInputPanel import NumberInputPanel, ModellerNumberInputPanel
from processing.gui.NumberInputPanel import NumberInputPanel, ModelerNumberInputPanel
from processing.gui.RangePanel import RangePanel
from processing.gui.PointSelectionPanel import PointSelectionPanel
from processing.gui.FileSelectionPanel import FileSelectionPanel
@ -706,7 +706,7 @@ class NumberWidgetWrapper(WidgetWrapper):
widget.hasChanged.connect(lambda: self.widgetValueHasChanged.emit(self))
return widget
else:
return ModellerNumberInputPanel(self.param, self.dialog)
return ModelerNumberInputPanel(self.param, self.dialog)
def setValue(self, value):
if value is None or value == NULL:
@ -737,7 +737,7 @@ class RangeWidgetWrapper(WidgetWrapper):
widget.hasChanged.connect(lambda: self.widgetValueHasChanged.emit(self))
return widget
#else:
# return ModellerNumberInputPanel(self.param, self.dialog)
# return ModelerNumberInputPanel(self.param, self.dialog)
def setValue(self, value):
if value is None or value == NULL:

View File

@ -1881,6 +1881,7 @@ curcumstance:circumstance
curcumstances:circumstances
curently:currently
currenly:currently
currnt:current
curriculem:curriculum
cxan:cyan
cyclinder:cylinder
@ -1957,6 +1958,7 @@ defenition:definition
defenitions:definitions
defered:deferred
deffensively:defensively
defferent:different
deffine:define
deffined:defined
defiend:defined
@ -6636,6 +6638,7 @@ succedes:succeeds
succeding:succeeding
succeds:succeeds
succeedes:succeeds
succes:success:*
succesful:successful
succesfull:successful
succesfully:successfully

0
src/core/qgsvectordataprovider.h Executable file → Normal file
View File