Skip to content

Commit 09f98fc

Browse files
committedNov 6, 2011
remove spatialindex include
1 parent dfdd2bc commit 09f98fc

File tree

9 files changed

+5
-12
lines changed

9 files changed

+5
-12
lines changed
 

‎src/analysis/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ INCLUDE_DIRECTORIES(
7171
${CMAKE_CURRENT_SOURCE_DIR}
7272
${CMAKE_CURRENT_SOURCE_DIR}/../core/
7373
${CMAKE_CURRENT_SOURCE_DIR}/../core/renderer
74-
${CMAKE_CURRENT_SOURCE_DIR}/../core/spatialindex
7574
${CMAKE_CURRENT_SOURCE_DIR}/../core/raster
7675
interpolation
7776
${PROJ_INCLUDE_DIR}

‎src/analysis/network/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,11 @@ SET(QGIS_NETWORK_ANALYSIS_HDRS
3434
INCLUDE_DIRECTORIES(
3535
${CMAKE_CURRENT_SOURCE_DIR}
3636
${CMAKE_CURRENT_SOURCE_DIR}../../core/
37-
${CMAKE_CURRENT_SOURCE_DIR}../../core/spatialindex
3837
${PROJ_INCLUDE_DIR}
3938
${GEOS_INCLUDE_DIR}
4039
${GDAL_INCLUDE_DIR}
4140
)
4241

43-
4442
#############################################################
4543
# qgis_analysis library
4644

‎src/app/composer/qgscomposertablewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ QgsComposerTableWidget::~QgsComposerTableWidget()
6464

6565
}
6666

67-
void QgsComposerTableWidget::showEvent( QShowEvent* event )
67+
void QgsComposerTableWidget::showEvent( QShowEvent* /* event */ )
6868
{
6969
refreshMapComboBox();
7070
}

‎src/core/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ SET(QGIS_CORE_SRCS
173173
symbology/qgssymbologyutils.cpp
174174

175175
qgsspatialindex.cpp
176-
177-
)
176+
)
178177

179178
IF(WIN32)
180179
SET(QGIS_CORE_SRCS
@@ -400,7 +399,6 @@ INCLUDE_DIRECTORIES(
400399
symbology
401400
symbology-ng
402401
gps/qextserialport
403-
spatialindex/include
404402
${PROJ_INCLUDE_DIR}
405403
${GEOS_INCLUDE_DIR}
406404
${GDAL_INCLUDE_DIR}

‎src/plugins/roadgraph/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ INCLUDE_DIRECTORIES(
2828
${CMAKE_CURRENT_BINARY_DIR}
2929
${GEOS_INCLUDE_DIR}
3030
../../core
31-
../../core/spatialindex
3231
../../gui
3332
../../analysis/network
3433
..
3534
)
35+
3636
########################################################
3737
# Build
3838

‎src/plugins/spatialquery/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ INCLUDE_DIRECTORIES(
3535
${CMAKE_CURRENT_BINARY_DIR}
3636
${CMAKE_CURRENT_BINARY_DIR}/../../ui/
3737
../../core
38-
../../core/spatialindex
3938
../../core/raster
4039
../../core/renderer
4140
../../core/symbology

‎src/providers/memory/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SET (MEMORY_SRCS qgsmemoryprovider.cpp)
33

44
INCLUDE_DIRECTORIES(
55
.
6-
../../core ../../core/spatialindex
6+
../../core
77
${GEOS_INCLUDE_DIR}
88
)
99

‎src/providers/spatialite/qgsspatialiteconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ QgsSpatiaLiteConnection::Error QgsSpatiaLiteConnection::fetchTables( bool loadGe
5757
return FailedToOpen;
5858
}
5959

60-
bool isSpatiaLite = checkHasMetadataTables( handle );
60+
checkHasMetadataTables( handle );
6161
if ( !mErrorMsg.isNull() )
6262
{
6363
// unexpected error; invalid SpatiaLite DB

‎src/providers/wfs/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ QT4_WRAP_CPP(WFS_MOC_SRCS ${WFS_MOC_HDRS})
3131

3232
INCLUDE_DIRECTORIES (
3333
../../core
34-
../../core/spatialindex
3534
../../gui
3635
${CMAKE_CURRENT_BINARY_DIR}/../../ui
3736
${GEOS_INCLUDE_DIR}

0 commit comments

Comments
 (0)
Please sign in to comment.