replace unicode dash with (monospace) minus.

git-svn-id: svn://localhost/ardour2/branches/3.0@14122 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2013-03-03 11:36:42 +00:00
parent 6c8f77c31b
commit 82be348d42
3 changed files with 6 additions and 6 deletions

View file

@ -1046,7 +1046,7 @@ AudioClock::set_frames (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
_layout->set_text ("\u2012\u2012\u2012\u2012\u2012\u2012\u2012\u2012\u2012\u2012");
_layout->set_text (" ----------");
if (_left_layout) {
_left_layout->set_text ("");
@ -1106,7 +1106,7 @@ AudioClock::set_minsec (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
_layout->set_text ("\u2012\u2012:\u2012\u2012:\u2012\u2012.\u2012\u2012\u2012");
_layout->set_text (" --:--:--.---");
if (_left_layout) {
_left_layout->set_text ("");
@ -1147,7 +1147,7 @@ AudioClock::set_timecode (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
_layout->set_text ("\u2012\u2012:\u2012\u2012:\u2012\u2012:\u2012\u2012");
_layout->set_text (" --:--:--:--");
if (_left_layout) {
_left_layout->set_text ("");
_right_layout->set_text ("");
@ -1182,7 +1182,7 @@ AudioClock::set_bbt (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
_layout->set_text ("\u2012\u2012\u2012|\u2012\u2012|\u2012\u2012\u2012\u2012");
_layout->set_text (" ---|--|----");
if (_left_layout) {
_left_layout->set_text ("");
_right_layout->set_text ("");