[RAPPS_NEW]

Continue the work converting the UI to using ATL-wrapped windows. CORE-9593

[RSHELL]
[EXPLORER]
Fixup two class declarations to work with the rosctrls.h changes.

svn path=/trunk/; revision=67474
This commit is contained in:
David Quintana 2015-04-29 00:07:54 +00:00
parent 4d59b2ba82
commit 38af0226a1
12 changed files with 769 additions and 736 deletions

View file

@ -103,7 +103,7 @@ typedef struct _TASK_ITEM
} TASK_ITEM, *PTASK_ITEM;
class CTaskToolbar :
public CToolbar<TASK_ITEM>
public CWindowImplBaseT< CToolbar<TASK_ITEM>, CControlWinTraits >
{
public:
INT UpdateTbButtonSpacing(IN BOOL bHorizontal, IN BOOL bThemed, IN UINT uiRows = 0, IN UINT uiBtnsPerLine = 0)
@ -170,7 +170,7 @@ public:
TBSTYLE_TOOLTIPS | TBSTYLE_WRAPABLE | TBSTYLE_LIST | TBSTYLE_TRANSPARENT |
CCS_TOP | CCS_NORESIZE | CCS_NODIVIDER;
return SubclassWindow(Create(hWndParent, styles));
return SubclassWindow(CToolbar::Create(hWndParent, styles));
}
};