Skip to content

Commit

Permalink
Tweak filter human labels to remove version number string. (#670)
Browse files Browse the repository at this point in the history
Signed-off-by: Joey Kleingers <[email protected]>
  • Loading branch information
joeykleingers authored Aug 18, 2023
1 parent 5acd0a8 commit ad029a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Uuid ExportDREAM3DFilter::uuid() const
//------------------------------------------------------------------------------
std::string ExportDREAM3DFilter::humanName() const
{
return "Write DREAM3D NX File (V8)";
return "Write DREAM3D NX File";
}

//------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Uuid ImportDREAM3DFilter::uuid() const
//------------------------------------------------------------------------------
std::string ImportDREAM3DFilter::humanName() const
{
return "Read DREAM.3D File (v8)";
return "Read DREAM.3D File";
}

//------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/ComplexCore/test/DREAM3DFileTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ constexpr StringLiteral k_ArrayName = "Test-Array";
constexpr StringLiteral k_Array2Name = "Test-Array2";

constexpr StringLiteral k_CreateDataFilterName = "Create Data Group";
constexpr StringLiteral k_ExportD3DFilterName = "Write DREAM3D NX File (V8)";
constexpr StringLiteral k_ExportD3DFilterName = "Write DREAM3D NX File";
} // namespace DataNames

const FilterHandle k_CreateDataGroupHandle(Uuid::FromString("e7d2f9b8-4131-4b28-a843-ea3c6950f101").value(), Uuid::FromString("05cc618b-781f-4ac0-b9ac-43f26ce1854f").value());
Expand Down

0 comments on commit ad029a9

Please sign in to comment.