Closed
Bug 89966
Opened 24 years ago
Closed 24 years ago
MfcEmbed's PromptService implementation not complete..
Categories
(Core Graveyard :: Embedding: APIs, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: chak, Assigned: chak)
Details
Attachments
(3 files)
13.81 KB,
patch
|
Details | Diff | Splinter Review | |
13.60 KB,
patch
|
Details | Diff | Splinter Review | |
23.11 KB,
patch
|
Details | Diff | Splinter Review |
Currently MFcEmbed's PromptService is not fully implemented.
Specifically, we need to impl the following methods:
ConfirmCheck
ConfirmEx
Select
Assignee | ||
Comment 1•24 years ago
|
||
The methods which are to be implemented are:
ConfirmCheck
ConfirmEx
AlertCheck
not
ConfirmCheck
ConfirmEx
Select (Which no one ever seems to call)
Assignee | ||
Comment 2•24 years ago
|
||
Assignee | ||
Comment 3•24 years ago
|
||
Hi Adam : Could you please r= this when you get a chance....Thanks
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•24 years ago
|
||
Hi Dan : Could you please r= this since Adam's on vacation....Thanks
Assignee | ||
Comment 5•24 years ago
|
||
Hi Conrad : Since both Adam and Danm are on vacation, would you be able to r=
this when you get a chance...Thanks
Comment 6•24 years ago
|
||
1) on ConfirmEx, the checkMsg param can be null. If that's the case, the
checkbox should be hidden. Also, checkValue can be null, so check that before
assigning to it.
2) in ConfirmEx, the setting of the button titles could be a little more
compact. If you had: CString csButtonStrings[3];
and then, in the for() loop, assign in each case to csButtonStrings[i], it would
be more concise and make for a few less initializations and assignments.
Assignee | ||
Comment 7•24 years ago
|
||
Comment 8•24 years ago
|
||
Looks good, except for this, in the bottom of ConfirmEx:
+ *checkValue = dlg.m_bCheckBoxValue;
There still needs to be a null-check there.
With that, r=ccarlen
Assignee | ||
Comment 9•24 years ago
|
||
Sorry, missed that one earlier.
I added the following check:
if(checkValue)
*checkValue = dlg.m_bCheckBoxValue;
Thanks for your keen eye and a quick review Conrad!
Assignee | ||
Comment 10•24 years ago
|
||
Hi Chris : Can i get an sr= on this...Thanks
Comment 11•24 years ago
|
||
There are lots of bad tabs in that patch. Can you fix those, please? And
remove this stuff:
+ //{{AFX_DATA(CAlertCheckDialog)
etc.
Fix those and you have an sr=blizzard
Assignee | ||
Comment 12•24 years ago
|
||
Assignee | ||
Comment 13•24 years ago
|
||
Patch checked in.
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Updated•24 years ago
|
QA Contact: mdunn → depstein
Comment 14•24 years ago
|
||
ConfirmCheck, ConfirmEx, & AlertCheck are now implemented in PromptService.
Status: RESOLVED → VERIFIED
Updated•6 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•