Explorar el Código

Remove bad cast warning in ctkCrosshairLabel

Julien Finet hace 14 años
padre
commit
6686dc23e0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
     }
 }