move lazy_refresh() from namespace API to API::dev

This commit is contained in:
Jinhao
2016-04-17 17:46:19 +08:00
parent afa253f924
commit 42990b8670
19 changed files with 121 additions and 120 deletions

View File

@@ -881,7 +881,7 @@ namespace nana
{
scheme_->mouse_pressed();
scheme_->draw(graph);
API::lazy_refresh();
API::dev::lazy_refresh();
}
}
}
@@ -894,7 +894,7 @@ namespace nana
{
scheme_->mouse_release();
scheme_->draw(graph);
API::lazy_refresh();
API::dev::lazy_refresh();
}
}
}
@@ -904,7 +904,7 @@ namespace nana
if(scheme_->locate(arg.pos.x, arg.pos.y) && API::window_enabled(scheme_->window_handle()))
{
scheme_->draw(graph);
API::lazy_refresh();
API::dev::lazy_refresh();
}
}
@@ -913,7 +913,7 @@ namespace nana
if(API::window_enabled(scheme_->window_handle()) && (scheme_->is_list_shown() == false) && scheme_->erase_locate())
{
scheme_->draw(graph);
API::lazy_refresh();
API::dev::lazy_refresh();
}
}
//end class trigger