Show
Ignore:
Timestamp:
02/13/12 15:24:57 (3 months ago)
Author:
CyberShadow
Message:

Remove deprecated base class protection attributes from interface declarations

"interface Foo : public Bar" => "interface Foo : Bar"

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/win32/exdisp.d

    r304 r374  
    2424} 
    2525 
    26 interface IWebBrowser : public IDispatch { 
     26interface IWebBrowser : IDispatch { 
    2727    HRESULT GoBack(); 
    2828    HRESULT GoForward(); 
     
    5252} 
    5353 
    54 interface IWebBrowserApp : public IWebBrowser { 
     54interface IWebBrowserApp : IWebBrowser { 
    5555    HRESULT Quit(); 
    5656    HRESULT ClientToWindow(int*, int*); 
     
    7575} 
    7676 
    77 interface IWebBrowser2 : public IWebBrowserApp { 
     77interface IWebBrowser2 : IWebBrowserApp { 
    7878    HRESULT Navigate2(VARIANT*, VARIANT*, VARIANT*, VARIANT*, VARIANT*); 
    7979    HRESULT QueryStatusWB(OLECMDID, OLECMDF*); 
     
    9797} 
    9898 
    99 interface DWebBrowserEvents2 : public IDispatch { 
     99interface DWebBrowserEvents2 : IDispatch { 
    100100    void StatusTextChange(BSTR); 
    101101    void ProgressChange(LONG, LONG);