Gui/Mod: replace several reinterpret_cast with static_cast

This commit is contained in:
wmayer
2022-06-25 11:36:55 +02:00
parent 814de93e36
commit d5340a82ab
33 changed files with 64 additions and 66 deletions

View File

@@ -88,7 +88,7 @@ public:
static void moveCallback(void * data, SoSensor * sensor)
{
Q_UNUSED(sensor);
Private* self = reinterpret_cast<Private*>(data);
Private* self = static_cast<Private*>(data);
if (self->view) {
Gui::View3DInventorViewer* view = self->view->getViewer();
SoClipPlane* clip = self->clipView;