mirror of
https://github.com/fadden/ciderpress.git
synced 2025-02-16 21:31:43 +00:00
Mostly a bulk conversion of debug messages, primarily with sed: sed -e 's/\(WMSG[0-9]\)\(.*\)\(\\n"\)/LOGI\2"/' This removes the '\n' from the end of the log messages, and sets them all to "info" severity. We want to prefix each line with file/line and/or a timestamp, so it doesn't make sense to have a partial line, and there's no value in embedding the '\n' in every string.
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
// AboutDlg.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "mdc.h"
|
|
#include "AboutDlg.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// AboutDlg dialog
|
|
|
|
|
|
AboutDlg::AboutDlg(CWnd* pParent /*=NULL*/)
|
|
: CDialog(AboutDlg::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(AboutDlg)
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(AboutDlg, CDialog)
|
|
//{{AFX_MSG_MAP(AboutDlg)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// AboutDlg message handlers
|
|
|
|
BOOL AboutDlg::OnInitDialog()
|
|
{
|
|
CDialog::OnInitDialog();
|
|
|
|
// TODO: Add extra initialization here
|
|
CWnd* pWnd = GetDlgItem(IDC_ABOUT_VERS);
|
|
ASSERT(pWnd != NULL);
|
|
CString fmt, newText;
|
|
|
|
pWnd->GetWindowText(fmt);
|
|
newText.Format(fmt, kAppMajorVersion, kAppMinorVersion, kAppBugVersion);
|
|
pWnd->SetWindowText(newText);
|
|
LOGI("STR is '%ls'", (LPCWSTR) newText);
|
|
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|
// EXCEPTION: OCX Property Pages should return FALSE
|
|
}
|