X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fforms%2Fabout%2FfrmAbout.cpp;h=6cc1d501e1cbaa00328201c91d17f28a948cedfa;hb=66ebed13414439cd56161faa2abcff7744ab4588;hp=ab9eee5d95d72250141ba14e2989fa5b38445e66;hpb=e3d8dbb679810e76bfdd39b1191efe5139936d85;p=xestiacalendar%2F.git diff --git a/source/forms/about/frmAbout.cpp b/source/forms/about/frmAbout.cpp index ab9eee5..6cc1d50 100644 --- a/source/forms/about/frmAbout.cpp +++ b/source/forms/about/frmAbout.cpp @@ -1,3 +1,21 @@ +// frmAbout.cpp - frmAbout subroutines +// +// (c) 2012-2017 Xestia Software Development. +// +// This file is part of Xestia Calendar. Originally from Xestia Address Book. +// +// Xestia Calendar is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by the +// Free Software Foundation, version 3 of the license. +// +// Xestia Calendar is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with Xestia Calendar. If not, see + #include "frmAbout.h" frmAbout::frmAbout( wxWindow* parent ) @@ -20,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