Skip to content

Commit

Permalink
Removed some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Youva committed Sep 24, 2024
1 parent 71a6bda commit 77f65ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugins/native/module/vtkQuakeMDLImporter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ std::string vtkQuakeMDLImporter::GetOutputsDescription()
}

//----------------------------------------------------------------------------
void vtkQuakeMDLImporter::UpdateTimeStep(double timeValue) override
void vtkQuakeMDLImporter::UpdateTimeStep(double timeValue)
{
this->Internals->UpdateFrame(timeValue);
return;
Expand Down
7 changes: 1 addition & 6 deletions plugins/native/module/vtkQuakeMDLImporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class vtkQuakeMDLImporter : public vtkImporter
* Update actors at the given time value.
*/

void UpdateTimeStep(double timeValue);
void UpdateTimeStep(double timeValue) override;

/**
* Get the number of available animations.
Expand Down Expand Up @@ -79,11 +79,6 @@ class vtkQuakeMDLImporter : public vtkImporter
*/
std::string GetCameraName(vtkIdType camIndex) override;

/**
* Re-render the scene after timestep
*/
void UpdateTimeStep(double timeValue) override;

/**
* Enable a specific camera.
* If a negative index is provided, no camera from the importer is used.
Expand Down

0 comments on commit 77f65ee

Please sign in to comment.