Skip to content

Commit

Permalink
Added missing call
Browse files Browse the repository at this point in the history
  • Loading branch information
Aemony committed Jun 9, 2024
1 parent 8f17bdb commit 546615f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/utility/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ SKIF_Util_CleanString (std::string& input)
{
SKIF_Util_StripNulls (input);
SKIF_Util_StripCarriageReturns (input);
SKIF_Util_TrimNewLines (input);
SKIF_Util_TrimSpaces (input);
}

Expand All @@ -132,6 +133,7 @@ SKIF_Util_CleanStringW (std::wstring& input)
{
SKIF_Util_StripNullsW (input);
SKIF_Util_StripCarriageReturnsW (input);
SKIF_Util_TrimNewLinesW (input);
SKIF_Util_TrimSpacesW (input);
}

Expand Down

0 comments on commit 546615f

Please sign in to comment.