Skip to content

Commit

Permalink
Reapply "25.2.22 Some fix"
Browse files Browse the repository at this point in the history
This reverts commit 613f352.
  • Loading branch information
tablacus committed Feb 22, 2025
1 parent 613f352 commit b3ce28d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified Debug/lib/te32.dll
Binary file not shown.
Binary file modified Debug/lib/te64.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Debug/script/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ g_.Notify = {};

AboutTE = function (n) {
if (n == 0) {
return te.Version < 20240616 ? te.Version : 20250116;
return te.Version < 20250222 ? te.Version : 20250222;
}
if (n == 1) {
const v = AboutTE(0);
Expand Down
6 changes: 3 additions & 3 deletions TE/Resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#define VER_D 1
#else
//Version(DLL)
#define VER_Y 24
#define VER_M 6
#define VER_D 16
#define VER_Y 25
#define VER_M 2
#define VER_D 22
#endif

//Icon
Expand Down
2 changes: 1 addition & 1 deletion TE/TE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13601,7 +13601,7 @@ VOID CteTreeView::Create()
if (EMULATE_XP SUCCEEDED(teCreateInstance(CLSID_NamespaceTreeControl, NULL, NULL, IID_PPV_ARGS(&m_pNameSpaceTreeControl)))) {
RECT rc;
SetRectEmpty(&rc);
if SUCCEEDED(m_pNameSpaceTreeControl->Initialize(m_hwndParent, &rc, m_param[SB_TreeFlags] & ~(NSTCS_CHECKBOXES | NSTCS_PARTIALCHECKBOXES | NSTCS_EXCLUSIONCHECKBOXES | NSTCS_DIMMEDCHECKBOXES | NSTCS_NOINDENTCHECKS | NSTCS_NOREPLACEOPEN))) {
if SUCCEEDED(m_pNameSpaceTreeControl->Initialize(m_hwndParent, &rc, m_param[SB_TreeFlags] & ~(NSTCS_CHECKBOXES | NSTCS_PARTIALCHECKBOXES | NSTCS_EXCLUSIONCHECKBOXES | NSTCS_DIMMEDCHECKBOXES | NSTCS_NOINDENTCHECKS | NSTCS_NOREPLACEOPEN) | NSTCS_NOINFOTIP)) {
m_pNameSpaceTreeControl->TreeAdvise(static_cast<INameSpaceTreeControlEvents *>(this), &m_dwCookie);
if (IUnknown_GetWindow(m_pNameSpaceTreeControl, &m_hwnd) == S_OK) {
m_hwndTV = FindTreeWindow(m_hwnd);
Expand Down

0 comments on commit b3ce28d

Please sign in to comment.