Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix build error
  • Loading branch information
jef-n committed Jan 15, 2015
1 parent 8147051 commit 859efa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/app/qgsdxfexportdialog.cpp
Expand Up @@ -366,7 +366,8 @@ void QgsVectorLayerAndAttributeModel::unSelectAll()
{
mCheckedLeafs.clear();

applyVisibility( QSet<QString>(), rootGroup() );
QSet<QString> noLayers;
applyVisibility( noLayers, rootGroup() );

emit dataChanged( QModelIndex(), QModelIndex() );
}
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/offline_editing/CMakeLists.txt
Expand Up @@ -48,10 +48,10 @@ INCLUDE_DIRECTORIES(
${SQLITE3_INCLUDE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
../../core
../../core/layertree
../../core/layertree
../../core/raster
../../gui
../../gui/layertree
../../gui/layertree
..
${GEOS_INCLUDE_DIR}
)
Expand Down

0 comments on commit 859efa5

Please sign in to comment.