Skip to content

Commit 56bba06

Browse files
committedDec 5, 2012
remove trailing whitespace
1 parent 75ac364 commit 56bba06

File tree

14 files changed

+61
-61
lines changed

14 files changed

+61
-61
lines changed
 

‎cmake/FindQextserialport.cmake

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@
55
# Redistribution and use is allowed according to the terms of the BSD license.
66
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
77
#
8-
# Once run this will define:
9-
#
8+
# Once run this will define:
9+
#
1010
# QEXTSERIALPORT_FOUND = system has Qextserialport lib
1111
# QEXTSERIALPORT_LIBRARY = full path to the Qextserialport library
12-
# QEXTSERIALPORT_INCLUDE_DIR = where to find headers
12+
# QEXTSERIALPORT_INCLUDE_DIR = where to find headers
1313
#
1414

1515

1616
FIND_PATH(QEXTSERIALPORT_INCLUDE_DIR NAMES qextserialport.h PATHS
1717
/usr/include
1818
/usr/local/include
19-
"$ENV{LIB_DIR}/include"
20-
"$ENV{INCLUDE}"
19+
"$ENV{LIB_DIR}/include"
20+
"$ENV{INCLUDE}"
2121
PATH_SUFFIXES QtExtSerialPort
2222
)
2323

24-
FIND_LIBRARY(QEXTSERIALPORT_LIBRARY NAMES qextserialport-1.2 PATHS
24+
FIND_LIBRARY(QEXTSERIALPORT_LIBRARY NAMES qextserialport-1.2 PATHS
2525
/usr/lib
2626
/usr/local/lib
27-
"$ENV{LIB_DIR}/lib"
28-
"$ENV{LIB}/lib"
27+
"$ENV{LIB_DIR}/lib"
28+
"$ENV{LIB}/lib"
2929
)
3030

3131
IF (QEXTSERIALPORT_INCLUDE_DIR AND QEXTSERIALPORT_LIBRARY)

‎python/plugins/db_manager/dlg_export_vector.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
copyright : (C) 2011 by Giuseppe Sucameli
99
email : brush.tyler@gmail.com
1010
11-
The content of this file is based on
11+
The content of this file is based on
1212
- PG_Manager by Martin Dobias (GPLv2 license)
1313
***************************************************************************/
1414
@@ -37,7 +37,7 @@ def __init__(self, inLayer, inDb, parent=None):
3737
self.inLayer = inLayer
3838
self.db = inDb
3939
self.setupUi(self)
40-
40+
4141
# update UI
4242
self.setupWorkingMode()
4343
self.populateEncodings()
@@ -75,7 +75,7 @@ def chooseOutputFile(self):
7575
settings.setValue("/db_manager/lastUsedDir", QFileInfo(filename).filePath())
7676

7777
self.editOutputFile.setText( filename )
78-
78+
7979
def populateEncodings(self):
8080
# populate the combo with supported encodings
8181
self.cboEncoding.addItems(qgis.core.QgsVectorDataProvider.availableEncodings())
@@ -88,7 +88,7 @@ def populateEncodings(self):
8888
self.cboEncoding.insertItem( 0, enc )
8989
idx = 0
9090
self.cboEncoding.setCurrentIndex( idx )
91-
91+
9292
def accept(self):
9393
# sanity checks
9494
if self.editOutputFile.text() == "":

‎src/designer/README.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Introduction:
77

88
The purpose of the QGIS designer plugins is to enable all third
99
party developers to create GIS enabled Qt4 based applications
10-
with minimal programming. The idea being that you use the
10+
with minimal programming. The idea being that you use the
1111
standard Qt4 Designer GUI design tool to create your user
1212
interface and then add map canvas, legend, projection selector
1313
etc. type of widgets from the toolbox of widgets in designer
1414
- with QGIS having added its own group of custome widgets there.
1515
The QGIS custom widgets can then be graphically 'programmed' by
16-
setting widget properties and using interactive signal/slot
16+
setting widget properties and using interactive signal/slot
1717
connectors.
1818

1919
Plugin Paths:
@@ -22,25 +22,25 @@ There are two options for having Qt4 Designer find your
2222
plugins at startup:
2323

2424
1) copy the plugin from {QGIS Install Prefix}/lib/qgis/designer
25-
into the standard Qt4 designer plugin directory at
25+
into the standard Qt4 designer plugin directory at
2626
$QTDIR/plugins/designer/
2727

2828
2) export the environment variable QT_PLUGIN_PATH with all the
2929
places designer should look for your plugins in. Separate
3030
each entry with a colon. So for example:
31-
31+
3232
export QT_PLUGIN_PATH={QGIS Install Prefix}/lib/qgis
3333

3434
Note that the 'designer' directory is omitted from the path.
3535

36-
Its probably a good idea to add the above export clause to
37-
your ~/.bash_profile or ~/.bashrc if you plan to use the
36+
Its probably a good idea to add the above export clause to
37+
your ~/.bash_profile or ~/.bashrc if you plan to use the
3838
designer plugins frequently.
3939

4040

4141
Additional Notes:
4242

43-
If you built Qt4 in debug mode then the designer plugins must also
43+
If you built Qt4 in debug mode then the designer plugins must also
4444
be built in debug mode or they will be ignored. The converse is also
4545
true.
4646

‎src/plugins/coordinate_capture/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SET (coordinatecapture_RCCS coordinatecapture.qrc)
1919
########################################################
2020
# Build
2121

22-
QT4_WRAP_UI (coordinatecapture_UIS_H ${coordinatecapture_UIS})
22+
QT4_WRAP_UI (coordinatecapture_UIS_H ${coordinatecapture_UIS})
2323

2424
QT4_WRAP_CPP (coordinatecapture_MOC_SRCS ${coordinatecapture_MOC_HDRS})
2525

@@ -30,9 +30,9 @@ ADD_LIBRARY (coordinatecaptureplugin MODULE ${coordinatecapture_SRCS} ${coordina
3030
INCLUDE_DIRECTORIES(
3131
${CMAKE_CURRENT_BINARY_DIR}
3232
${CMAKE_CURRENT_BINARY_DIR}/../../ui/
33-
../../core
34-
../../core/raster
35-
../../core/renderer
33+
../../core
34+
../../core/raster
35+
../../core/renderer
3636
../../core/symbology
3737
../../gui
3838
..

‎src/plugins/coordinate_capture/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ Coordinate Capture Plugin for Quantum GIS
22

33
Tim Sutton 2008
44

5-
A simple plugin that allows you to copy the
5+
A simple plugin that allows you to copy the
66
coordinates of mouse clicks to the clipboard.

‎src/plugins/globe/CMakeModules/FindOSG.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# directory, and source directory, respectively
1111
# OSGDIR or OSG_SOURCE_DIR: osg source directory, typically OpenSceneGraph
1212
# OSG_DIR or OSG_BUILD_DIR: osg build directory, place in which you've
13-
# built osg via cmake
13+
# built osg via cmake
1414

1515
# Header files are presumed to be included like
1616
# #include <osg/PositionAttitudeTransform>

‎src/plugins/globe/CMakeModules/FindOpenThreads.cmake

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# OpenThreads is a C++ based threading library. Its largest userbase
1+
# OpenThreads is a C++ based threading library. Its largest userbase
22
# seems to OpenSceneGraph so you might notice I accept OSGDIR as an
33
# environment path.
4-
# I consider this part of the Findosg* suite used to find OpenSceneGraph
4+
# I consider this part of the Findosg* suite used to find OpenSceneGraph
55
# components.
66
# Each component is separate and you must opt in to each module.
7-
#
7+
#
88
# Locate OpenThreads
99
# This module defines
1010
# OPENTHREADS_LIBRARY
@@ -21,8 +21,8 @@
2121
# #include <OpenThreads/Thread>
2222

2323
# To make it easier for one-step automated configuration/builds,
24-
# we leverage environmental paths. This is preferable
25-
# to the -DVAR=value switches because it insulates the
24+
# we leverage environmental paths. This is preferable
25+
# to the -DVAR=value switches because it insulates the
2626
# users from changes we may make in this script.
2727
# It also offers a little more flexibility than setting
2828
# the CMAKE_*_PATH since we can target specific components.
@@ -75,7 +75,7 @@ IF(NOT OPENTHREADS_INCLUDE_DIR)
7575
ENDIF(NOT OPENTHREADS_INCLUDE_DIR)
7676

7777

78-
FIND_LIBRARY(OPENTHREADS_LIBRARY
78+
FIND_LIBRARY(OPENTHREADS_LIBRARY
7979
NAMES OpenThreads OpenThreadsWin32
8080
PATHS
8181
$ENV{OPENTHREADS_LIBRARY_DIR}
@@ -90,15 +90,15 @@ FIND_LIBRARY(OPENTHREADS_LIBRARY
9090
)
9191

9292
IF(NOT OPENTHREADS_LIBRARY)
93-
FIND_LIBRARY(OPENTHREADS_LIBRARY
94-
NAMES OpenThreads OpenThreadsWin32
93+
FIND_LIBRARY(OPENTHREADS_LIBRARY
94+
NAMES OpenThreads OpenThreadsWin32
9595
PATHS ${CMAKE_PREFIX_PATH} # Unofficial: We are proposing this.
9696
PATH_SUFFIXES lib64 lib
9797
)
9898
ENDIF(NOT OPENTHREADS_LIBRARY)
9999

100100
IF(NOT OPENTHREADS_LIBRARY)
101-
FIND_LIBRARY(OPENTHREADS_LIBRARY
101+
FIND_LIBRARY(OPENTHREADS_LIBRARY
102102
NAMES OpenThreads OpenThreadsWin32
103103
PATHS
104104
~/Library/Frameworks
@@ -121,7 +121,7 @@ IF(NOT OPENTHREADS_LIBRARY)
121121
ENDIF(NOT OPENTHREADS_LIBRARY)
122122

123123

124-
FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
124+
FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
125125
NAMES OpenThreadsd OpenThreadsWin32d
126126
PATHS
127127
$ENV{OPENTHREADS_DEBUG_LIBRARY_DIR}
@@ -140,15 +140,15 @@ FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
140140
)
141141

142142
IF(NOT OPENTHREADS_LIBRARY_DEBUG)
143-
FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
143+
FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
144144
NAMES OpenThreadsd OpenThreadsWin32d
145145
PATHS ${CMAKE_PREFIX_PATH} # Unofficial: We are proposing this.
146146
PATH_SUFFIXES lib64 lib
147147
)
148148
ENDIF(NOT OPENTHREADS_LIBRARY_DEBUG)
149149

150150
IF(NOT OPENTHREADS_LIBRARY_DEBUG)
151-
FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
151+
FIND_LIBRARY(OPENTHREADS_LIBRARY_DEBUG
152152
NAMES OpenThreadsd OpenThreadsWin32d
153153
PATHS
154154
/usr/local/lib64
@@ -176,7 +176,7 @@ IF(OPENTHREADS_LIBRARY)
176176
SET(OPENTHREADS_LIBRARY_DEBUG "${OPENTHREADS_LIBRARY}" CACHE FILEPATH "Debug version of OpenThreads Library (use regular version if not available)" FORCE)
177177
ENDIF(NOT OPENTHREADS_LIBRARY_DEBUG)
178178
ENDIF(OPENTHREADS_LIBRARY)
179-
179+
180180
SET(OPENTHREADS_FOUND "NO")
181181
IF(OPENTHREADS_INCLUDE_DIR AND OPENTHREADS_LIBRARY)
182182
SET(OPENTHREADS_FOUND "YES")

‎src/plugins/gps_importer/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
##############################################
66

77
Please do not edit the files in this directory
8-
unless you know exactly what you are doing -
8+
unless you know exactly what you are doing -
99
these files are used as the basis for creating
1010
new plugins. Altering these files may break
1111
the automated plugin template generation process.

‎src/plugins/grass/modules/r.distance.qgm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<qgisgrassmodule label="Locate the closest points between objects in two raster maps" module="r.distance">
55
<option key="maps" option="map1"/>
66
<option key="maps" option="map2"/>
7-
<option key="fs" advanced="yes"/>
7+
<option key="fs" advanced="yes"/>
88
</qgisgrassmodule>
99

‎src/plugins/grass/modules/v.in.ogr.all.qgm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<option key="type" advanced="yes"/>
88
<flag key="z" answer="off" hidden="no" advanced="yes"/>
99
<flag key="e" answer="off" hidden="no" advanced="yes"/>
10-
<option key="snap" advanced="yes" />
10+
<option key="snap" advanced="yes" />
1111
<option key="min_area" advanced="yes" />
1212
<flag key="o" answer="on" advanced="yes" />
1313
</qgisgrassmodule>

‎src/plugins/grass/modules/v.in.ogr.qgis.qgm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
33

4-
<qgisgrassmodule label="Import loaded vector" module="v.in.ogr">
5-
<ogr key="dsn" layeroption="layer" whereoption="where" label="Loaded layer" />
6-
<option key="output" />
4+
<qgisgrassmodule label="Import loaded vector" module="v.in.ogr">
5+
<ogr key="dsn" layeroption="layer" whereoption="where" label="Loaded layer" />
6+
<option key="output" />
77
<option key="type" advanced="yes"/>
88
<flag key="z" answer="off" hidden="no" advanced="yes" />
99
<flag key="e" answer="off" hidden="no" advanced="yes" />

‎src/plugins/interpolation/CMakeLists.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SET (INTERPOLATION_SRCS
99
qgstininterpolatordialog.cpp
1010
)
1111

12-
SET (INTERPOLATION_UIS
12+
SET (INTERPOLATION_UIS
1313
qgsidwinterpolatordialogbase.ui
1414
qgsinterpolationdialogbase.ui
1515
qgstininterpolatordialogbase.ui
@@ -32,19 +32,19 @@ QT4_WRAP_CPP (INTERPOLATION_MOC_SRCS ${INTERPOLATION_MOC_HDRS})
3232

3333
QT4_ADD_RESOURCES(INTERPOLATION_RCC_SRCS ${INTERPOLATION_RCCS})
3434

35-
ADD_LIBRARY (interpolationplugin MODULE
35+
ADD_LIBRARY (interpolationplugin MODULE
3636
${INTERPOLATION_SRCS}
37-
${INTERPOLATION_MOC_SRCS}
38-
${INTERPOLATION_RCC_SRCS}
37+
${INTERPOLATION_MOC_SRCS}
38+
${INTERPOLATION_RCC_SRCS}
3939
${INTERPOLATION_UIS_H})
4040

4141
INCLUDE_DIRECTORIES(
4242
${CMAKE_CURRENT_BINARY_DIR}
4343
${GEOS_INCLUDE_DIR}
4444
../../analysis/interpolation
45-
../../core
46-
../../core/raster
47-
../../core/renderer
45+
../../core
46+
../../core/raster
47+
../../core/renderer
4848
../../core/symbology
4949
../../gui
5050
..

‎src/plugins/raster_terrain_analysis/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SET (RASTER_TERRAIN_SRCS
66
qgsrasterterrainanalysisdialog.cpp
77
)
88

9-
SET (RASTER_TERRAIN_UIS
9+
SET (RASTER_TERRAIN_UIS
1010
qgsrasterterrainanalysisdialogbase.ui
1111
)
1212

@@ -25,17 +25,17 @@ QT4_WRAP_CPP (RASTER_TERRAIN_MOC_SRCS ${RASTER_TERRAIN_MOC_HDRS})
2525

2626
QT4_ADD_RESOURCES(RASTER_TERRAIN_RCC_SRCS ${RASTER_TERRAIN_RCCS})
2727

28-
ADD_LIBRARY (rasterterrainplugin MODULE
28+
ADD_LIBRARY (rasterterrainplugin MODULE
2929
${RASTER_TERRAIN_SRCS}
30-
${RASTER_TERRAIN_MOC_SRCS}
31-
${RASTER_TERRAIN_RCC_SRCS}
30+
${RASTER_TERRAIN_MOC_SRCS}
31+
${RASTER_TERRAIN_RCC_SRCS}
3232
${RASTER_TERRAIN_UIS_H})
3333

3434
INCLUDE_DIRECTORIES(
3535
${CMAKE_CURRENT_BINARY_DIR}
3636
${GDAL_INCLUDE_DIR}
37-
../../core
38-
../../core/raster
37+
../../core
38+
../../core/raster
3939
../../gui
4040
../../analysis/raster
4141
..

‎src/plugins/sqlanywhere/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SET (sqlanywhere_SRCS
88
sadbtablemodel.cpp
99
)
1010

11-
SET (sqlanywhere_UIS
11+
SET (sqlanywhere_UIS
1212
sanewconnectionbase.ui
1313
sasourceselectbase.ui
1414
)
@@ -48,9 +48,9 @@ INCLUDE_DIRECTORIES(
4848
${CMAKE_CURRENT_SOURCE_DIR}
4949
${CMAKE_CURRENT_BINARY_DIR}
5050
${CMAKE_CURRENT_BINARY_DIR}/../../ui
51-
../../core
52-
../../core/raster
53-
../../core/renderer
51+
../../core
52+
../../core/raster
53+
../../core/renderer
5454
../../core/symbology
5555
../../gui
5656
../../app

0 commit comments

Comments
 (0)
Please sign in to comment.