Skip to content

Commit

Permalink
TreeView: Fixed error in node insertion
Browse files Browse the repository at this point in the history
  • Loading branch information
NovFR committed Apr 4, 2021
1 parent 73f99e4 commit 01df924
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified Binaries/GlEd.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Application.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.1.0.4" processorArchitecture="amd64" name="GlEd" type="win32"/>
<assemblyIdentity version="1.1.0.5" processorArchitecture="amd64" name="GlEd" type="win32"/>
<description>GlEd</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
Expand Down
2 changes: 1 addition & 1 deletion Source/Includes/_Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define VERSION_MAJOR 1
#define REVISION_MAJOR 1
#define VERSION_MINOR 0
#define REVISION_MINOR 4
#define REVISION_MINOR 5

#define TOSTRINGTMP(x) #x
#define TOSTRING(x) TOSTRINGTMP(x)
Expand Down
2 changes: 1 addition & 1 deletion Source/Sources/Tree/Tree_InsertXml.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ int Tree_InsertXML_Ok(HWND hDlg, void *pDialog)
pCurrentNode->node.prev->next = (NODE *)pFirstNode;
pFirstNode->node.prev = pCurrentNode->node.prev;
pLastNode->node.next = (NODE *)pCurrentNode;
pCurrentNode->node.prev = (NODE *)pFirstNode;
pCurrentNode->node.prev = (NODE *)pLastNode;
root.next = NULL;
break;
case TV_INSERT_AFTER:
Expand Down

0 comments on commit 01df924

Please sign in to comment.