~ubuntu-branches/debian/squeeze/stella/squeeze

« back to all changes in this revision

Viewing changes to src/win32/StellaX/AboutPage.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Mario Iseli
  • Date: 2006-04-08 18:38:25 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060408183825-vu1jk57rk929derx
* New Maintainer (Closes: #361345)
* New upstream release (Closes: #349725)
* Build-Depend now on libslang2-dev (Closes: #325577)
* Complete rebuild of debian/, upgraded to policy-standards
  3.6.2 and compat-level 5.
* Removed stellarc since stella only reads ~/.stellarc and even
  works without a first config.
* New debian/watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//============================================================================
2
 
//
3
 
//   SSSS    tt          lll  lll          XX     XX
4
 
//  SS  SS   tt           ll   ll           XX   XX
5
 
//  SS     tttttt  eeee   ll   ll   aaaa     XX XX
6
 
//   SSSS    tt   ee  ee  ll   ll      aa     XXX
7
 
//      SS   tt   eeeeee  ll   ll   aaaaa    XX XX
8
 
//  SS  SS   tt   ee      ll   ll  aa  aa   XX   XX
9
 
//   SSSS     ttt  eeeee llll llll  aaaaa  XX     XX
10
 
//
11
 
// Copyright (c) 1995-2000 by Jeff Miller
12
 
// Copyright (c) 2004 by Stephen Anthony
13
 
//
14
 
// See the file "license" for information on usage and redistribution of
15
 
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
16
 
//
17
 
// $Id: AboutPage.cxx,v 1.2 2004/07/15 03:03:26 stephena Exp $
18
 
//============================================================================
19
 
 
20
 
#include "pch.hxx"
21
 
#include "AboutPage.hxx"
22
 
#include "resource.h"
23
 
 
24
 
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
25
 
CHelpPage::CHelpPage()
26
 
         : CPropertyPage(IDD_ABOUT_PAGE)
27
 
{
28
 
}
29
 
 
30
 
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
31
 
BOOL CHelpPage::OnInitDialog(   HWND hwnd )
32
 
{
33
 
  m_hlMail_JSM.SubclassDlgItem( hwnd, IDC_EMAIL_MAINTAINER );
34
 
  m_hlMail_JSM.SetURL( _T("mailto:sa666_666@hotmail.com?Subject=StellaX") );
35
 
 
36
 
  m_hlWWW_JSM.SubclassDlgItem( hwnd, IDC_WEB_MAINTAINER );
37
 
  m_hlWWW_JSM.SetURL( _T("http://minbar.org") );
38
 
 
39
 
  m_hlMail_Stella.SubclassDlgItem( hwnd, IDC_EMAIL_STELLA );
40
 
  m_hlMail_Stella.SetURL( _T("mailto:stella-main@lists.sourceforge.net") );
41
 
 
42
 
  m_hlWWW_Stella.SubclassDlgItem( hwnd, IDC_WEB_STELLA );
43
 
  m_hlWWW_Stella.SetURL( _T("http://stella.sf.net") );
44
 
 
45
 
  // return FALSE if SetFocus is called
46
 
  return TRUE;
47
 
}