replace string parameter of image's constructor with filesystem::path

This commit is contained in:
Jinhao
2015-11-30 00:58:29 +08:00
parent c86a00bea5
commit b35f293b9e
11 changed files with 103 additions and 67 deletions

View File

@@ -463,10 +463,10 @@ namespace detail
}
}
void window_manager::default_icon(const nana::paint::image& small, const nana::paint::image& big)
void window_manager::default_icon(const nana::paint::image& small_icon, const nana::paint::image& big_icon)
{
impl_->default_icon_big = big;
impl_->default_icon_small = small;
impl_->default_icon_big = big_icon;
impl_->default_icon_small = small_icon;
}
void window_manager::icon(core_window_t* wd, const paint::image& small_icon, const paint::image& big_icon)