Skip to content

Commit

Permalink
remove debug messages...
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Jun 19, 2013
1 parent 9858b7a commit e1bb948
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions libmscore/textline.cpp
Expand Up @@ -81,7 +81,6 @@ void TextLineSegment::draw(QPainter* painter) const
color = textLine()->curColor();
normalColor = true;
}
qDebug() << "normal color" << color;
qreal l = 0.0;
int sym = spannerSegmentType() == SEGMENT_MIDDLE ? tl->continueSymbol() : tl->beginSymbol();
if (_text) {
Expand Down Expand Up @@ -110,7 +109,6 @@ qDebug() << "normal color" << color;
QPen pen(normalColor ? tl->lineColor() : color, textlineLineWidth);
pen.setStyle(tl->lineStyle());
painter->setPen(pen);
qDebug() << "pen color" << pen.color();
if (spannerSegmentType() == SEGMENT_SINGLE || spannerSegmentType() == SEGMENT_END) {
if (tl->endSymbol() != -1) {
int sym = tl->endSymbol();
Expand Down Expand Up @@ -321,7 +319,6 @@ TextLine::TextLine(Score* s)
_beginTextPlace = PLACE_LEFT;
_continueTextPlace = PLACE_LEFT;
_lineColor = curColor();
qDebug() << _lineColor;
_beginSymbol = noSym;
_continueSymbol = noSym;
_endSymbol = noSym;
Expand Down

0 comments on commit e1bb948

Please sign in to comment.