use lambda instead of std::bind

This commit is contained in:
Jinhao
2015-09-27 05:31:42 +08:00
parent 90533b3a83
commit 2f47e89af1
8 changed files with 212 additions and 28 deletions

View File

@@ -88,8 +88,8 @@ namespace drawerbase
std::size_t checked() const; ///< Retrieves the index of the checkbox which is checked.
std::size_t size() const;
private:
void _m_checked(const arg_click&);
void _m_destroy(const arg_destroy&);
//void _m_checked(const arg_click&); //deprecated
//void _m_destroy(const arg_destroy&); //deprecated
private:
std::vector<element_tag> ui_container_;
};

View File

@@ -167,7 +167,7 @@ namespace nana
void key_press(graph_reference, const arg_keyboard&) override;
void key_char(graph_reference, const arg_keyboard&) override;
private:
void _m_deal_adjust();
//void _m_deal_adjust(); //deprecated
private:
implement * const impl_;
}; //end class trigger