Skip to content

Commit f06b369

Browse files
committed
More spelling fixes
1 parent b82ec17 commit f06b369

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

NEWS

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

doc/news.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ <H1>1. What's new in Version 3.0 'Girona'?</H1>
165165
<LI>Symbology: Annotations can be styled using fill symbol styles
166166
<LI>Symbology: Point cluster renderer
167167
<LI>Labeling: Allow label font size in mm/pixels
168-
<LI>Labeling: Custom labelling toolbar is now always enabled
168+
<LI>Labeling: Custom labeling toolbar is now always enabled
169169
<LI>Diagrams: Data definable properties
170170
<LI>Rendering: Grid renderer for points displacement
171171
<LI>Rendering: Live layer support

doc/news.t2t

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

python/core/qgslabelsearchtree.sip.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class QgsLabelSearchTree
1414
{
1515
%Docstring
16-
A class to query the labeling structure at a given point (small wraper around pal RTree class)
16+
A class to query the labeling structure at a given point (small wrapper around pal RTree class)
1717
%End
1818

1919
%TypeHeaderCode

python/plugins/processing/gui/NumberInputPanel.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
os.path.join(pluginPath, 'ui', 'widgetBaseSelector.ui'))
5252

5353

54-
class ModellerNumberInputPanel(BASE, WIDGET):
54+
class ModelerNumberInputPanel(BASE, WIDGET):
5555

5656
"""
57-
Number input panel for use inside the modeller - this input panel
57+
Number input panel for use inside the modeler - this input panel
5858
is based off the base input panel and includes a text based line input
5959
for entering values. This allows expressions and other non-numeric
6060
values to be set, which are later evalauted to numbers when the model
@@ -64,7 +64,7 @@ class ModellerNumberInputPanel(BASE, WIDGET):
6464
hasChanged = pyqtSignal()
6565

6666
def __init__(self, param, modelParametersDialog):
67-
super(ModellerNumberInputPanel, self).__init__(None)
67+
super().__init__(None)
6868
self.setupUi(self)
6969

7070
self.param = param
@@ -126,7 +126,7 @@ def setValue(self, value):
126126
class NumberInputPanel(NUMBER_BASE, NUMBER_WIDGET):
127127

128128
"""
129-
Number input panel for use outside the modeller - this input panel
129+
Number input panel for use outside the modeler - this input panel
130130
contains a user friendly spin box for entering values.
131131
"""
132132

python/plugins/processing/gui/wrappers.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
from processing.core.ProcessingConfig import ProcessingConfig
103103
from processing.modeler.MultilineTextPanel import MultilineTextPanel
104104

105-
from processing.gui.NumberInputPanel import NumberInputPanel, ModellerNumberInputPanel
105+
from processing.gui.NumberInputPanel import NumberInputPanel, ModelerNumberInputPanel
106106
from processing.gui.RangePanel import RangePanel
107107
from processing.gui.PointSelectionPanel import PointSelectionPanel
108108
from processing.gui.FileSelectionPanel import FileSelectionPanel
@@ -706,7 +706,7 @@ def createWidget(self):
706706
widget.hasChanged.connect(lambda: self.widgetValueHasChanged.emit(self))
707707
return widget
708708
else:
709-
return ModellerNumberInputPanel(self.param, self.dialog)
709+
return ModelerNumberInputPanel(self.param, self.dialog)
710710

711711
def setValue(self, value):
712712
if value is None or value == NULL:
@@ -737,7 +737,7 @@ def createWidget(self):
737737
widget.hasChanged.connect(lambda: self.widgetValueHasChanged.emit(self))
738738
return widget
739739
#else:
740-
# return ModellerNumberInputPanel(self.param, self.dialog)
740+
# return ModelerNumberInputPanel(self.param, self.dialog)
741741

742742
def setValue(self, value):
743743
if value is None or value == NULL:

scripts/spell_check/spelling.dat

+3
Original file line numberDiff line numberDiff line change
@@ -1881,6 +1881,7 @@ curcumstance:circumstance
18811881
curcumstances:circumstances
18821882
curently:currently
18831883
currenly:currently
1884+
currnt:current
18841885
curriculem:curriculum
18851886
cxan:cyan
18861887
cyclinder:cylinder
@@ -1957,6 +1958,7 @@ defenition:definition
19571958
defenitions:definitions
19581959
defered:deferred
19591960
deffensively:defensively
1961+
defferent:different
19601962
deffine:define
19611963
deffined:defined
19621964
defiend:defined
@@ -6636,6 +6638,7 @@ succedes:succeeds
66366638
succeding:succeeding
66376639
succeds:succeeds
66386640
succeedes:succeeds
6641+
succes:success:*
66396642
succesful:successful
66406643
succesfull:successful
66416644
succesfully:successfully

src/core/qgsvectordataprovider.h

100755100644
File mode changed.

0 commit comments

Comments
 (0)