X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fforms%2Fabout%2FfrmAbout.cpp;h=6cc1d501e1cbaa00328201c91d17f28a948cedfa;hb=66ebed13414439cd56161faa2abcff7744ab4588;hp=ede290a05cdf1626e41708b78f447a5225be3cec;hpb=22339c898f8c04af609419f036828323b26f480f;p=xestiacalendar%2F.git diff --git a/source/forms/about/frmAbout.cpp b/source/forms/about/frmAbout.cpp index ede290a..6cc1d50 100644 --- a/source/forms/about/frmAbout.cpp +++ b/source/forms/about/frmAbout.cpp @@ -38,25 +38,25 @@ void frmAbout::SetupAboutWindow() // Setup the about window to display information about // Xestia Address Book. - wxString VersionLabel, BuildLabel, CopyrightLabel; + wxString versionLabel, buildLabel, copyrightLabel; wxMemoryInputStream istream(bigimgs_aboutimage_png, sizeof(bigimgs_aboutimage_png)); wxImage bigimgs_aboutimage_png(istream, wxBITMAP_TYPE_PNG); - wxBitmap AboutScreen(bigimgs_aboutimage_png, -1); - bmpLogo->SetBitmap(AboutScreen); + wxBitmap aboutScreen(bigimgs_aboutimage_png, -1); + bmpLogo->SetBitmap(aboutScreen); - VersionLabel.Append(wxT("Version ")); - VersionLabel.Append(wxT(XSDCAL_VERSION)); + versionLabel.Append(wxT("Version ")); + versionLabel.Append(wxT(XSDCAL_VERSION)); - BuildLabel.Append(wxT("Built on ")); - BuildLabel.Append(wxT(__DATE__)); - BuildLabel.Append(wxT(" at ")); - BuildLabel.Append(wxT(__TIME__)); - BuildLabel.Append(wxT(".")); + buildLabel.Append(wxT("Built on ")); + buildLabel.Append(wxT(__DATE__)); + buildLabel.Append(wxT(" at ")); + buildLabel.Append(wxT(__TIME__)); + buildLabel.Append(wxT(".")); - CopyrightLabel.Append(XSDCAL_COPYRIGHT); + copyrightLabel.Append(XSDCAL_COPYRIGHT); - lblVersion->SetLabel(VersionLabel); - lblCompileTime->SetLabel(BuildLabel); - lblCopyright->SetLabel(CopyrightLabel); + lblVersion->SetLabel(versionLabel); + lblCompileTime->SetLabel(buildLabel); + lblCopyright->SetLabel(copyrightLabel); } \ No newline at end of file