diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-20 04:33:15 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-20 04:33:15 (GMT) |
commit | fef8dba56bae76f6e876656cee603fc895fa0955 (patch) | |
tree | 859ef069b86c7c5527fdc43bc48abd8249f6278b /src/mainwin.cc | |
parent | 8696d4440e3cf3df1159ad596342ba6d0aad365b (diff) |
map bug
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 1f8f699..b229435 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -1027,7 +1027,7 @@ bool MainWindow::includesChanged() BOOST_FOREACH(const FileModule::IncludeContainer::value_type &item, this->root_module->includes) { //std::cout<< item.first << "second" << item.second << "\n"; //std::cout<< (is_modified(item.first, item.second)) <<"\n"; - if (this->root_module->include_modified(item)) + if (this->root_module->include_modified(item.second)) return true; } } |