1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Remove trailing spaces.

This commit is contained in:
benjamin.drung@gmail.com
2014-06-03 20:30:19 +00:00
parent d921c4969b
commit 277932dccb
380 changed files with 6489 additions and 6491 deletions

View File

@@ -21,7 +21,7 @@
\verbatim
Gui -- Data -- Prefs
\endverbatim
*//*******************************************************************/
#include "Audacity.h"
@@ -40,7 +40,7 @@ bool ShuttlePrefs::TransferBool( const wxString & Name, bool & bValue, const boo
{
bValue = bDefault;
gPrefs->Read( Name, &bValue );
}
}
else
{
return (gPrefs->Write( Name, bValue ) && gPrefs->Flush());
@@ -54,7 +54,7 @@ bool ShuttlePrefs::TransferDouble( const wxString & Name, double & dValue, const
{
dValue = dDefault;
gPrefs->Read( Name, &dValue );
}
}
else
{
return (gPrefs->Write( Name, dValue ) && gPrefs->Flush());
@@ -68,7 +68,7 @@ bool ShuttlePrefs::TransferInt( const wxString & Name, int & iValue, const int &
{
iValue = iDefault;
gPrefs->Read( Name, &iValue );
}
}
else
{
return (gPrefs->Write( Name, iValue ) && gPrefs->Flush());
@@ -82,7 +82,7 @@ bool ShuttlePrefs::TransferString( const wxString & Name, wxString & strValue, c
{
strValue = strDefault;
gPrefs->Read( Name, &strValue );
}
}
else
{
return (gPrefs->Write( Name, strValue ) && gPrefs->Flush());