a modification for leobackes's pull request
This commit is contained in:
parent
ad94439206
commit
e3e861eec8
@ -369,7 +369,7 @@ namespace nana
|
|||||||
if (set_value)
|
if (set_value)
|
||||||
iter.value(std::forward<T>(t));
|
iter.value(std::forward<T>(t));
|
||||||
|
|
||||||
update();
|
_m_update();
|
||||||
|
|
||||||
return iter;
|
return iter;
|
||||||
}
|
}
|
||||||
@ -440,11 +440,11 @@ namespace nana
|
|||||||
private:
|
private:
|
||||||
void _m_append(std::vector<cell> && cells);
|
void _m_append(std::vector<cell> && cells);
|
||||||
void _m_cat_by_pos();
|
void _m_cat_by_pos();
|
||||||
|
void _m_update();
|
||||||
private:
|
private:
|
||||||
essence_t* ess_{nullptr};
|
essence_t* ess_{nullptr};
|
||||||
category_t* cat_{nullptr};
|
category_t* cat_{nullptr};
|
||||||
size_type pos_{0}; ///< Absolute position, not relative to display, and dont change during sort()
|
size_type pos_{0}; ///< Absolute position, not relative to display, and dont change during sort()
|
||||||
void update();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct export_options
|
struct export_options
|
||||||
|
@ -4204,7 +4204,7 @@ namespace nana
|
|||||||
cat_ = &(*i);
|
cat_ = &(*i);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cat_proxy::update() {
|
void cat_proxy::_m_update() {
|
||||||
ess_->update();
|
ess_->update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user