mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-15 06:06:02 +00:00
d42b9c6dc0
The static analyzer was annoyed that the return value from calls to CString::LoadString() was being ignored. This adds a wrapper function that checks the value and logs a failure message if the string can't be found.
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Support for EditCommentDialog.
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "EditCommentDialog.h"
|
|
|
|
BEGIN_MESSAGE_MAP(EditCommentDialog, CDialog)
|
|
ON_BN_CLICKED(IDC_COMMENT_DELETE, OnDelete)
|
|
ON_WM_HELPINFO()
|
|
ON_COMMAND(IDHELP, OnHelp)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
BOOL EditCommentDialog::OnInitDialog(void)
|
|
{
|
|
/*
|
|
* If this is a new comment, don't show the delete button.
|
|
*/
|
|
if (fNewComment) {
|
|
CWnd* pWnd = GetDlgItem(IDC_COMMENT_DELETE);
|
|
pWnd->EnableWindow(FALSE);
|
|
}
|
|
|
|
return CDialog::OnInitDialog();
|
|
}
|
|
|
|
void EditCommentDialog::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
DDX_Text(pDX, IDC_COMMENT_EDIT, fComment);
|
|
}
|
|
|
|
void EditCommentDialog::OnDelete(void)
|
|
{
|
|
CString question, title;
|
|
int result;
|
|
|
|
CheckedLoadString(&title, IDS_EDIT_COMMENT);
|
|
CheckedLoadString(&question, IDS_DEL_COMMENT_OK);
|
|
result = MessageBox(question, title, MB_OKCANCEL | MB_ICONQUESTION);
|
|
if (result == IDCANCEL)
|
|
return;
|
|
|
|
EndDialog(kDeleteCommentID);
|
|
}
|