Browse Source

Remove bad cast warning in ctkCrosshairLabel

Julien Finet 14 years ago
parent
commit
6686dc23e0
1 changed files with 1 additions and 1 deletions
  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;
     }
 }