Navigation Menu

Skip to content

Commit

Permalink
viewOutput bug fix
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5854 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Sep 22, 2006
1 parent 5337195 commit 927cd95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassmodule.cpp
Expand Up @@ -1358,10 +1358,10 @@ void QgsGrassModule::viewOutput()
QString uri = QgsGrass::getDefaultGisdbase() + "/"
+ QgsGrass::getDefaultLocation() + "/"
+ QgsGrass::getDefaultMapset() + "/"
+ map + "/" + layers[i];
+ map + "/" + layers[j];

// TODO vector layer name
mIface->addVectorLayer( uri, layers[i], "grass");
mIface->addVectorLayer( uri, layers[j], "grass");
}
}

Expand Down

0 comments on commit 927cd95

Please sign in to comment.