#include "SRAboutView.h" #include "SwordReaderResource.h" SRAboutView::SRAboutView() { m_wcsAbout = "SwordReader v"; m_wcsAbout += SR_VERSION_STRING; m_wcsAbout += "
"; m_wcsAbout += " Bible software for Windows Mobile.

"; m_wcsAbout += "Built on: "; m_wcsAbout += __DATE__; m_wcsAbout += " at: "; m_wcsAbout += __TIME__; m_wcsAbout += "

"; m_wcsAbout += "Website: http://www.swordreader.org

"; m_wcsAbout += "(c) 2006-2009 Copyright Crosswire Bible Society under terms of GNU GPL v2


"; m_wcsAbout += "Credits:
"; m_wcsAbout += "Original concept and code by:
"; m_wcsAbout += " Johan Gorter

"; m_wcsAbout += "Lead Developer:
"; m_wcsAbout += " David Trotz Jr. dtrotzjr@crosswire.org

"; m_wcsAbout += "Code contributions made by:
"; m_wcsAbout += " Barry Drake, Albert L. Sites Sr., ...

"; m_wcsAbout += "Testing contributions by:
"; m_wcsAbout += " Barry Drake, Robin Randall, John Mitchell, ...

"; AddText(m_wcsAbout.w_str(), m_wcsAbout.length()); } SRAboutView::~SRAboutView() { }