Skip to content

Commit

Permalink
Running check_spelling.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ committed Jul 7, 2017
1 parent e69788e commit 0d1c4cd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion python/gui/qgsfontbutton.sip
Expand Up @@ -14,7 +14,7 @@ class QgsFontButton : QToolButton
%Docstring
A button for customising QgsTextFormat settings.

The button will open a detailed text format settings dialog when clicked. An attached drop down
The button will open a detailed text format settings dialog when clicked. An attached drop-down
menu allows for copying and pasting text styles, picking colors for the text, and for dropping
colors from other color widgets.

Expand Down
6 changes: 3 additions & 3 deletions python/plugins/MetaSearch/pavement.py
Expand Up @@ -33,7 +33,7 @@
from paver.easy import (call_task, cmdopts, error, info, options, path,
sh, task, Bunch)

from owslib.csw import CatalogueServiceWeb
from owslib.csw import CatalogueServiceWeb # spellok

PLUGIN_NAME = 'MetaSearch'
BASEDIR = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -187,7 +187,7 @@ def test_default_csw_connections():

for conn in conns.findall('csw'):
try:
csw = CatalogueServiceWeb(conn.attrib.get('url'))
csw = CatalogueServiceWeb(conn.attrib.get('url')) # spellok
info('Success: %s', csw.identification.title)
csw.getrecords2()
except Exception as err:
Expand Down Expand Up @@ -215,7 +215,7 @@ def generate_csw_connections_file():
if not url: # blank line
continue
try:
csw = CatalogueServiceWeb(url)
csw = CatalogueServiceWeb(url) # spellok
title = str(csw.identification.title)
etree.SubElement(conns, 'csw', name=title, url=url)
except Exception as err:
Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgssymbollayerutils.cpp
Expand Up @@ -3553,7 +3553,7 @@ QPointF QgsSymbolLayerUtils::pointOnLineWithDistance( QPointF startPoint, QPoint

QStringList QgsSymbolLayerUtils::listSvgFiles()
{
// copied from QgsMarkerCatalogue - TODO: unify
// copied from QgsMarkerCatalogue - TODO: unify //#spellok
QStringList list;
QStringList svgPaths = QgsApplication::svgPaths();

Expand Down
6 changes: 3 additions & 3 deletions src/gui/qgsfontbutton.h
Expand Up @@ -28,7 +28,7 @@ class QgsMapCanvas;
* \class QgsFontButton
* A button for customising QgsTextFormat settings.
*
* The button will open a detailed text format settings dialog when clicked. An attached drop down
* The button will open a detailed text format settings dialog when clicked. An attached drop-down
* menu allows for copying and pasting text styles, picking colors for the text, and for dropping
* colors from other color widgets.
*
Expand Down Expand Up @@ -205,7 +205,7 @@ class GUI_EXPORT QgsFontButton : public QToolButton

void showSettingsDialog();

/** Creates the drop down menu entries
/** Creates the drop-down menu entries
*/
void prepareMenu();

Expand Down Expand Up @@ -257,7 +257,7 @@ class GUI_EXPORT QgsFontButton : public QToolButton
bool colorFromMimeData( const QMimeData *mimeData, QColor &resultColor, bool &hasAlpha );

/**
* Create a \a color icon for display in the drop down menu.
* Create a \a color icon for display in the drop-down menu.
*/
QPixmap createColorIcon( const QColor &color ) const;

Expand Down

0 comments on commit 0d1c4cd

Please sign in to comment.