diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-20 04:32:41 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-20 04:32:41 (GMT) |
commit | 8696d4440e3cf3df1159ad596342ba6d0aad365b (patch) | |
tree | 8896d91ce8721a57d9a9d690d39d5d8044abe492 /src/mainwin.cc | |
parent | 8a83e334abceda6f5c119872f922da7cc99c7210 (diff) |
pointer 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 b4261de..1f8f699 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)) return true; } } |