소스 검색

Remove bad cast warning in ctkCrosshairLabel

Julien Finet 14 년 전
부모
커밋
6686dc23e0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Libs/Widgets/ctkCrosshairLabel.cpp

+ 1 - 1
Libs/Widgets/ctkCrosshairLabel.cpp

@@ -110,7 +110,7 @@ void ctkCrosshairLabelPrivate::drawCrosshair()
       this->drawBullsEyeCrosshair(painter);
       break;
     default:
-      qDebug() << "Unsupported crosshair type" << this->CrosshairType;
+      qCritical() << "Unsupported crosshair type" << static_cast<int>(this->CrosshairType);
       break;
     }
 }