Skip to content
This repository has been archived by the owner on Feb 18, 2020. It is now read-only.

Commit

Permalink
Merge pull request #60 from dpfoose/master
Browse files Browse the repository at this point in the history
close map windows on deleting dataset
  • Loading branch information
dpfoose authored Oct 19, 2016
2 parents 7947c82 + d803cb0 commit b625f0a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Vespucci/Data/Dataset/vespuccidataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ using namespace std;
///
/// \brief VespucciDataset::~VespucciDataset
///
VespucciDataset::~VespucciDataset(){}
VespucciDataset::~VespucciDataset()
{
for (auto key : MapKeys())
workspace_->GetMap(name_, key)->HideMapWindow();

}

bool VespucciDataset::Save(QString filename)
{
Expand Down

0 comments on commit b625f0a

Please sign in to comment.