* spot/twaalgos/dot.cc: Rename a variable.

This commit is contained in:
Alexandre Duret-Lutz 2016-02-05 15:58:41 +01:00
parent 348f7cce0b
commit be4418257e

View file

@ -70,7 +70,7 @@ namespace spot
bool opt_bullet = false; bool opt_bullet = false;
bool opt_bullet_but_buchi = false; bool opt_bullet_but_buchi = false;
bool opt_all_bullets = false; bool opt_all_bullets = false;
bool opt_numbered_trans = false; bool opt_ordered_edges_ = false;
bool opt_want_state_names_ = true; bool opt_want_state_names_ = true;
unsigned opt_shift_sets_ = 0; unsigned opt_shift_sets_ = 0;
std::string opt_font_; std::string opt_font_;
@ -206,7 +206,7 @@ namespace spot
opt_name_ = false; opt_name_ = false;
break; break;
case 'o': case 'o':
opt_numbered_trans = true; opt_ordered_edges_ = true;
break; break;
case 'r': case 'r':
opt_html_labels_ = true; opt_html_labels_ = true;
@ -550,7 +550,7 @@ namespace spot
} }
os_ << '>'; os_ << '>';
} }
if (opt_numbered_trans) if (opt_ordered_edges_)
os_ << ", taillabel=\"" << number << '"'; os_ << ", taillabel=\"" << number << '"';
if (highlight_edges_) if (highlight_edges_)
{ {