Skip to content

Commit

Permalink
Update Processor.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock committed Dec 30, 2023
1 parent 6db8320 commit 3dd6606
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/StftPitchShiftPlugin/Processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ Processor::~Processor()

const juce::String Processor::getName() const
{
return juce::String(ProjectInfo::projectName) +
juce::String(" v") +
juce::String(ProjectInfo::versionString);
return juce::String::formatted(
"%s v%s",
ProjectInfo::projectName,
ProjectInfo::versionString);
}

bool Processor::hasEditor() const { return true; }
Expand Down

0 comments on commit 3dd6606

Please sign in to comment.