Skip to content

Commit

Permalink
fixed new SonarQube errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vividos committed Dec 22, 2023
1 parent 955b83f commit 17e92c6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion source/winlame/encoder/AudioFileTag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ CString Encoder::AudioFileTag::GetTagLibVersion()
Win32::VersionInfoResource versionInfo{ filename };

if (!versionInfo.IsAvail())
return STRINGIFY(TAGLIB_MAJOR_VERSION) _T(".") STRINGIFY(TAGLIB_MINOR_VERSION) _T(".") STRINGIFY(TAGLIB_PATCH_VERSION);
return STRINGIFY(TAGLIB_MAJOR_VERSION) "." STRINGIFY(TAGLIB_MINOR_VERSION) "." STRINGIFY(TAGLIB_PATCH_VERSION);

// retrieve version language
std::vector<Win32::LANGANDCODEPAGE> langAndCodePagesList;
Expand Down
7 changes: 4 additions & 3 deletions source/winlame/res/about.0402.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,12 @@ <h3>Components</h3>

<p>
<table cellpadding="2" cellspacing="0" border="1">
<caption>Libraries and components, their versions and licenses</caption>
<thead>
<tr>
<td>Library</td>
<td>Version</td>
<td>License</td>
<th>Library</th>
<th>Version</th>
<th>License</th>
</tr>
</thead>
<tbody>
Expand Down
9 changes: 5 additions & 4 deletions source/winlame/res/about.0407.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,12 @@ <h3>Komponenten</h3>

<p>
<table cellpadding="2" cellspacing="0" border="1">
<caption>Libraries and components, their versions and licenses</caption>
<thead>
<tr>
<td>Library</td>
<td>Version</td>
<td>License</td>
<th>Library</th>
<th>Version</th>
<th>License</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -312,4 +313,4 @@ <h3>Komponenten</h3>

</div>
</body>
</html>
</html>
7 changes: 4 additions & 3 deletions source/winlame/res/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,12 @@ <h3>Components</h3>

<p>
<table cellpadding="2" cellspacing="0" border="1">
<caption>Libraries and components, their versions and licenses</caption>
<thead>
<tr>
<td>Library</td>
<td>Version</td>
<td>License</td>
<th>Library</th>
<th>Version</th>
<th>License</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit 17e92c6

Please sign in to comment.