mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 17:11:12 +02:00
Linty fixes
This commit fixes a number of warnings shown in compilation with MSVC. No behavioral changes intended. I did not fix signed/unsigned warnings.
This commit is contained in:
@@ -144,7 +144,7 @@ void LinkingHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
|
||||
wxFileName( FileNames::HtmlHelpDir(), href.Mid( 10 ) + wxT(".htm") ).GetFullPath();
|
||||
if( wxFileExists( FileName ) )
|
||||
{
|
||||
HelpSystem::ShowHelp(this, FileName, wxEmptyString);
|
||||
HelpSystem::ShowHelp(this, FileName, wxEmptyString, false);
|
||||
return;
|
||||
}
|
||||
else
|
||||
|
@@ -596,6 +596,7 @@ return theArray.Get();
|
||||
(NumericConverter::Type type)
|
||||
{
|
||||
switch (type) {
|
||||
default:
|
||||
case NumericConverter::TIME:
|
||||
return TimeConverterFormats();
|
||||
case NumericConverter::FREQUENCY:
|
||||
|
Reference in New Issue
Block a user