Skip to content

Commit 859efa5

Browse files
committed
fix build error
1 parent 8147051 commit 859efa5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/app/qgsdxfexportdialog.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,8 @@ void QgsVectorLayerAndAttributeModel::unSelectAll()
366366
{
367367
mCheckedLeafs.clear();
368368

369-
applyVisibility( QSet<QString>(), rootGroup() );
369+
QSet<QString> noLayers;
370+
applyVisibility( noLayers, rootGroup() );
370371

371372
emit dataChanged( QModelIndex(), QModelIndex() );
372373
}

src/plugins/offline_editing/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ INCLUDE_DIRECTORIES(
4848
${SQLITE3_INCLUDE_DIR}
4949
${CMAKE_CURRENT_BINARY_DIR}
5050
../../core
51-
../../core/layertree
51+
../../core/layertree
5252
../../core/raster
5353
../../gui
54-
../../gui/layertree
54+
../../gui/layertree
5555
..
5656
${GEOS_INCLUDE_DIR}
5757
)

0 commit comments

Comments
 (0)