File tree Expand file tree Collapse file tree 6 files changed +23
-7
lines changed Expand file tree Collapse file tree 6 files changed +23
-7
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ BEGIN_MSG_MAP2(CLogView)
170
170
COMMAND_RANGE_HANDLER_EX (ID_VIEW_COLUMN_FIRST, ID_VIEW_COLUMN_LAST, OnViewColumn)
171
171
CHAIN_MSG_MAP_ALT (COwnerDraw<CLogView>, 1 )
172
172
CHAIN_MSG_MAP (CDoubleBufferImpl<CLogView>) // DrMemory: GDI USAGE ERROR: DC 0x3e011cca that contains selected object being deleted
173
+
174
+ // Provides a default handler that will receive reflected messages; the handler will properly pass unhandled messages to DefWindowProc.
173
175
DEFAULT_REFLECTION_HANDLER ()
174
176
END_MSG_MAP ()
175
177
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ CLogView& CLogViewTabItem::GetView()
60
60
return *m_pView;
61
61
}
62
62
63
- void DisablePaneHeader (CPaneContainer & panecontainer)
63
+ void DisablePaneHeader (CMyPaneContainer & panecontainer)
64
64
{
65
65
panecontainer.SetPaneContainerExtendedStyle (PANECNT_NOCLOSEBUTTON, 0 );
66
66
panecontainer.m_cxyHeader = 0 ;
Original file line number Diff line number Diff line change @@ -57,6 +57,17 @@ class CLogViewTabItem : public CTabViewTabItem
57
57
HWND m_parent;
58
58
};
59
59
60
+ class CMyPaneContainer : public CPaneContainerImpl <CMyPaneContainer>
61
+ {
62
+ public:
63
+ DECLARE_WND_CLASS_EX (_T(" MY_PaneContainer" ), 0 , -1 )
64
+
65
+ BEGIN_MSG_MAP (CMyPaneContainerImpl)
66
+ REFLECT_NOTIFICATIONS ()
67
+ CHAIN_MSG_MAP (CPaneContainerImpl<CMyPaneContainer>)
68
+ END_MSG_MAP ()
69
+ };
70
+
60
71
class CLogViewTabItem2 : public CTabViewTabItem
61
72
{
62
73
public:
@@ -69,8 +80,8 @@ class CLogViewTabItem2 : public CTabViewTabItem
69
80
private:
70
81
std::shared_ptr<CLogView> m_pView;
71
82
CHorSplitterWindow m_split;
72
- CPaneContainer m_top;
73
- CPaneContainer m_bottom;
83
+ CMyPaneContainer m_top;
84
+ CMyPaneContainer m_bottom;
74
85
gdi::CTimelineView m_timelineView;
75
86
};
76
87
Original file line number Diff line number Diff line change 1
- #define VERSION 1,8,0,7
2
- #define VERSION_STR "1.8.0.7 "
1
+ #define VERSION 1,8,0,10
2
+ #define VERSION_STR "1.8.0.10 "
Original file line number Diff line number Diff line change 3
3
<?define ProductVersion .Major=" 1" ?>
4
4
<?define ProductVersion .Minor=" 8" ?>
5
5
<?define ProductVersion .Revision=" 0" ?>
6
- <?define ProductVersion .Build=" 7 " ?>
7
- <?define ProductVersion =" 1.8.0.7 " ?>
6
+ <?define ProductVersion .Build=" 10 " ?>
7
+ <?define ProductVersion =" 1.8.0.10 " ?>
8
8
</Include >
Original file line number Diff line number Diff line change 184
184
<ProjectReference Include =" ..\DebugView++Lib\DebugView++Lib.vcxproj" >
185
185
<Project >{5e5b7c33-8076-4e21-adf3-d56c8c28822a}</Project >
186
186
</ProjectReference >
187
+ <ProjectReference Include =" ..\Win32Lib\Win32Lib.vcxproj" >
188
+ <Project >{7aa3a43a-f0cd-4bd8-bc04-5a30f7260c38}</Project >
189
+ </ProjectReference >
187
190
</ItemGroup >
188
191
<Import Project =" $(VCTargetsPath)\Microsoft.Cpp.targets" />
189
192
<ImportGroup Label =" ExtensionTargets" >
You can’t perform that action at this time.
0 commit comments