bug: second parameter of category_icon() is rvalue reference

This commit is contained in:
ErrorFlynn 2019-04-18 17:13:19 -04:00 committed by GitHub
parent c5b38f3643
commit e36a3270e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1568,7 +1568,7 @@ the nana::detail::basic_window member pointer scheme
* @param img_collapsed An icon displayed in front of category title when the category is collapsed. * @param img_collapsed An icon displayed in front of category title when the category is collapsed.
* @return the reference of *this. * @return the reference of *this.
*/ */
listbox& category_icon(const paint::image& img_expanded, const paint::image&& img_collapsed); listbox& category_icon(const paint::image& img_expanded, const paint::image& img_collapsed);
/// Returns first visible element /// Returns first visible element
/** /**