1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01: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

@@ -9,12 +9,12 @@
********************************************************************//**
\class SplashDialog
\brief The SplashDialog shows help information for Audacity when
\brief The SplashDialog shows help information for Audacity when
Audacity starts up.
It was written for the benefit of new users who do not want to
It was written for the benefit of new users who do not want to
read the manual. The text of the dialog is kept short to increase the
chance of it being read. The content is designed to reduce the
chance of it being read. The content is designed to reduce the
most commonly asked questions about Audacity.
*//********************************************************************/
@@ -46,7 +46,7 @@ most commonly asked questions about Audacity.
SplashDialog * SplashDialog::pSelf=NULL;
enum
enum
{
DontShowID=1000,
};
@@ -94,10 +94,10 @@ void SplashDialog::Populate( ShuttleGui & S )
RescaledImage.Rescale( int(LOGOWITHNAME_WIDTH * fScale), int(LOGOWITHNAME_HEIGHT *fScale) );
wxBitmap RescaledBitmap( RescaledImage );
m_pIcon =
new wxStaticBitmap(S.GetParent(), -1,
//*m_pLogo, //v theTheme.Bitmap(bmpAudacityLogoWithName),
new wxStaticBitmap(S.GetParent(), -1,
//*m_pLogo, //v theTheme.Bitmap(bmpAudacityLogoWithName),
RescaledBitmap,
wxDefaultPosition,
wxDefaultPosition,
wxSize(int(LOGOWITHNAME_WIDTH*fScale), int(LOGOWITHNAME_HEIGHT*fScale)));
S.Prop(0).AddWindow( m_pIcon );
@@ -129,7 +129,7 @@ SplashDialog::~SplashDialog()
void SplashDialog::OnDontShow( wxCommandEvent & Evt )
{
bool bShow = !Evt.IsChecked();
bool bShow = !Evt.IsChecked();
gPrefs->Write(wxT("/GUI/ShowSplashScreen"), bShow );
gPrefs->Flush();
}