Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #19619
    noman9607
    Participant

    Hello: I am using vs2013 and without making any changes on the plugin download I get the error pasted below
    also, I did a solution wide search for OnEvents and found the code blocks below:
    Error 7 error C2660: ‘CMyFrame::OnEvents’ : function does not take 3 arguments d:\p\projects\emeditor_plugin\wordcount500s\etlframe.h 149 1 WordCount
    // from etlframe.h
    void OnEvents( HWND hwndView, UINT nEvent, LPARAM lParam ) // three arguments
    {
    T* pT = static_cast<T*>(this);
    pT->OnEvents( hwndView, nEvent, lParam );
    }

    // from wordcount.h
    void OnEvents( HWND hwndView, UINT nEvent ) // two arguments
    {
    if( nEvent & EVENT_SEL_CHANGED ){
    Editor_UpdateToolbar( hwndView, EEGetCmdID() );
    }

    As you can see one definition has three arguments and the other has two. Is this the cause of my compile failure?

    #19620
    Yutaka Emura
    Keymaster

    Hello noman9607,

    You are using very old verison. Please use a newer version you can find at:

    https://www.emeditor.com/files/emeditor_plugins_src11-zip/

    Thanks,

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.