add sort to output

This commit is contained in:
David Rose 2001-11-02 01:02:30 +00:00
parent ce21b1d346
commit 2991a6562c

View File

@ -40,7 +40,9 @@ output(ostream &out) const {
////////////////////////////////////////////////////////////////////
void MouseWatcherRegion::
write(ostream &out, int indent_level) const {
indent(out, indent_level) << get_name() << " lrbt = " << _frame << "\n";
indent(out, indent_level)
<< get_name() << " lrbt = " << _frame
<< ", sort = " << _sort << "\n";
}
////////////////////////////////////////////////////////////////////