Click here to Skip to main content
15,881,424 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Debug Assertion Failed! [modified] Pin
David Crow8-May-09 5:25
David Crow8-May-09 5:25 
Questionremove item from STL list<class> problem</class> Pin
raj15767-May-09 21:20
raj15767-May-09 21:20 
AnswerRe: remove item from STL list problem Pin
Roger Stoltz7-May-09 21:47
Roger Stoltz7-May-09 21:47 
GeneralRe: remove item from STL list problem Pin
raj15767-May-09 22:48
raj15767-May-09 22:48 
AnswerRe: remove item from STL list problem Pin
Roger Stoltz7-May-09 23:04
Roger Stoltz7-May-09 23:04 
GeneralRe: remove item from STL list problem Pin
raj15767-May-09 23:11
raj15767-May-09 23:11 
AnswerRe: remove item from STL list problem Pin
Stuart Dootson7-May-09 22:16
professionalStuart Dootson7-May-09 22:16 
GeneralRe: remove item from STL list problem Pin
raj15767-May-09 22:44
raj15767-May-09 22:44 
when i use m_Clips.remove(*pClip);

then i got error
'operator==' not implemented in type 'ClipEntry' for arguments of the same type

while i already implement the operator== like this

bool ClipEntry::operator ==(const ClipEntry &r)
{

if(m_tOffset != r.m_tOffset) return 0;
if(m_pGraph != r.m_pGraph) return 0;
if(m_pSinkFilter != r.m_pSinkFilter) return 0;
if(m_strName != r.m_strName) return 0;
if(m_tStart !=r.m_tStart) return 0;
if(m_tStop != r.m_tStop) return 0;
if(m_bPrimed != r.m_bPrimed) return 0;
return 1;
}

then what should i do for this
GeneralRe: remove item from STL list problem Pin
Stuart Dootson7-May-09 22:55
professionalStuart Dootson7-May-09 22:55 
GeneralRe: remove item from STL list problem Pin
raj15767-May-09 23:04
raj15767-May-09 23:04 
Questionopc communication [modified] Pin
lucan funani7-May-09 21:16
lucan funani7-May-09 21:16 
QuestionProblem in Image Displaying in a VC++ Application Pin
Shiv Murti Pal7-May-09 21:08
Shiv Murti Pal7-May-09 21:08 
AnswerRe: Problem in Image Displaying in a VC++ Application Pin
Taran97-May-09 22:47
Taran97-May-09 22:47 
AnswerRe: Problem in Image Displaying in a VC++ Application Pin
Hamid_RT7-May-09 23:17
Hamid_RT7-May-09 23:17 
QuestionSetup and deployment project Shortcut creating problem Pin
Ranojay7-May-09 18:53
Ranojay7-May-09 18:53 
AnswerRe: Setup and deployment project Shortcut creating problem Pin
Madhu Nair7-May-09 19:31
Madhu Nair7-May-09 19:31 
GeneralRe: Setup and deployment project Shortcut creating problem Pin
Ranojay7-May-09 21:16
Ranojay7-May-09 21:16 
GeneralRe: Setup and deployment project Shortcut creating problem Pin
Madhu Nair7-May-09 22:54
Madhu Nair7-May-09 22:54 
GeneralRe: Setup and deployment project Shortcut creating problem Pin
Ranojay7-May-09 23:50
Ranojay7-May-09 23:50 
QuestionRe: Setup and deployment project Shortcut creating problem Pin
Madhu Nair8-May-09 0:02
Madhu Nair8-May-09 0:02 
AnswerRe: Setup and deployment project Shortcut creating problem Pin
Ranojay8-May-09 1:06
Ranojay8-May-09 1:06 
QuestionHow to convert JP2 image to Jpg image? Pin
kapardhi7-May-09 18:43
kapardhi7-May-09 18:43 
AnswerRe: How to convert JP2 image to Jpg image? Pin
john56327-May-09 19:19
john56327-May-09 19:19 
AnswerRe: How to convert JP2 image to Jpg image? Pin
Stuart Dootson7-May-09 21:52
professionalStuart Dootson7-May-09 21:52 
AnswerRe: How to convert JP2 image to Jpg image? Pin
Hamid_RT7-May-09 23:00
Hamid_RT7-May-09 23:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.