mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[BROWSEUI]
- Fix the order of some COM interfaces. This should have no functional effect, but makes testing easier. svn path=/trunk/; revision=59467
This commit is contained in:
parent
b05476d7af
commit
57fef2297a
7 changed files with 23 additions and 23 deletions
|
@ -25,8 +25,8 @@ class CACLMulti :
|
|||
public CComCoClass<CACLMulti, &CLSID_ACLMulti>,
|
||||
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
||||
public IEnumString,
|
||||
public IACList,
|
||||
public IObjMgr
|
||||
public IObjMgr,
|
||||
public IACList
|
||||
{
|
||||
private:
|
||||
struct ACLMultiSublist
|
||||
|
|
|
@ -25,14 +25,14 @@ class CAddressBand :
|
|||
public CComCoClass<CAddressBand, &CLSID_SH_AddressBand>,
|
||||
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
||||
public IDeskBand,
|
||||
public IOleCommandTarget,
|
||||
public IObjectWithSite,
|
||||
public IInputObject,
|
||||
public IPersistStream,
|
||||
public IOleCommandTarget,
|
||||
public IServiceProvider,
|
||||
public IWinEventHandler,
|
||||
public IAddressBand,
|
||||
public IServiceProvider,
|
||||
public IInputObjectSite,
|
||||
public IPersistStream
|
||||
public IInputObjectSite
|
||||
{
|
||||
private:
|
||||
CComPtr<IDockingWindowSite> fSite;
|
||||
|
|
|
@ -24,13 +24,13 @@ class CAddressEditBox :
|
|||
public CWindowImpl<CAddressEditBox, CWindow, CControlWinTraits>,
|
||||
public CComCoClass<CAddressEditBox, &CLSID_AddressEditBox>,
|
||||
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
||||
public IShellService,
|
||||
public IWinEventHandler,
|
||||
public IDispatch,
|
||||
public IAddressBand,
|
||||
public IAddressEditBox,
|
||||
public IWinEventHandler,
|
||||
public IOleCommandTarget,
|
||||
public IDispatch,
|
||||
public IPersistStream
|
||||
public IPersistStream,
|
||||
public IShellService
|
||||
{
|
||||
private:
|
||||
CContainedWindow fEditWindow;
|
||||
|
|
|
@ -24,15 +24,15 @@
|
|||
class CBandSiteBase :
|
||||
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
||||
public IBandSite,
|
||||
public IWinEventHandler,
|
||||
public IDeskBarClient,
|
||||
public IOleCommandTarget,
|
||||
public IInputObject,
|
||||
public IInputObjectSite,
|
||||
public IServiceProvider,
|
||||
public IInputObject,
|
||||
public IDeskBarClient,
|
||||
public IWinEventHandler,
|
||||
public IPersistStream,
|
||||
public IDropTarget,
|
||||
public IBandSiteHelper
|
||||
public IServiceProvider,
|
||||
public IBandSiteHelper,
|
||||
public IOleCommandTarget
|
||||
{
|
||||
private:
|
||||
struct BandObject
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
class CBandSiteMenu :
|
||||
public CComCoClass<CBandSiteMenu, &CLSID_BandSiteMenu>,
|
||||
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
||||
public IShellService,
|
||||
public IContextMenu2
|
||||
public IContextMenu2,
|
||||
public IShellService
|
||||
{
|
||||
public:
|
||||
CBandSiteMenu();
|
||||
|
|
|
@ -28,9 +28,9 @@ class CBrandBand :
|
|||
public IObjectWithSite,
|
||||
public IInputObject,
|
||||
public IPersistStream,
|
||||
public IWinEventHandler,
|
||||
public IOleCommandTarget,
|
||||
public IServiceProvider,
|
||||
public IWinEventHandler,
|
||||
public IDispatch
|
||||
{
|
||||
private:
|
||||
|
|
|
@ -23,15 +23,15 @@
|
|||
class CCommonBrowser :
|
||||
public CComCoClass<CCommonBrowser, &CLSID_ACLMulti>,
|
||||
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
||||
public IShellBrowser,
|
||||
public IBrowserService3,
|
||||
public IServiceProvider,
|
||||
public IOleCommandTarget,
|
||||
public IBrowserService3,
|
||||
public IShellBrowser,
|
||||
public IShellBrowserService,
|
||||
public IDockingWindowSite,
|
||||
public IDockingWindowFrame,
|
||||
public IInputObjectSite,
|
||||
public IDropTarget
|
||||
public IDropTarget,
|
||||
public IShellBrowserService
|
||||
{
|
||||
private:
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue