mirror of
git://slackware.nl/current.git
synced 2025-02-02 20:46:08 +01:00
79b114c035
a/file-5.46-x86_64-2.txz: Rebuilt. Disable libseccomp for now to work around "Bad system call." Thanks to TommyC7. ap/mariadb-11.4.4-x86_64-6.txz: Rebuilt. If we see /etc/logrotate.d/mysql, rename it to mysql.bak so that it won't cause a conflict with the mariadb logrotate file. Thanks to alex14641. d/doxygen-1.13.0-x86_64-2.txz: Rebuilt. [PATCH] issue #11299 Regression with HTML_DYNAMIC_MENUS = NO, DISABLE_INDEX = NO, and custom LAYOUT_FILE. Thanks to gmgf. l/fluidsynth-2.4.2-x86_64-1.txz: Upgraded. l/xxHash-0.8.3-x86_64-1.txz: Upgraded. n/fetchmail-6.5.2-x86_64-1.txz: Upgraded.
26 lines
757 B
Diff
26 lines
757 B
Diff
From f46e21ed722193d74f56b2aa275a5cdc5e40b72b Mon Sep 17 00:00:00 2001
|
|
From: Dimitri van Heesch <doxygen@gmail.com>
|
|
Date: Mon, 30 Dec 2024 16:07:04 +0100
|
|
Subject: [PATCH] issue #11299 Regression with HTML_DYNAMIC_MENUS = NO,
|
|
DISABLE_INDEX = NO, and custom LAYOUT_FILE
|
|
|
|
---
|
|
src/layout.h | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/src/layout.h b/src/layout.h
|
|
index fc7917291b..247c24eb9c 100644
|
|
--- a/src/layout.h
|
|
+++ b/src/layout.h
|
|
@@ -232,6 +232,11 @@ struct LayoutNavEntry
|
|
std::swap(m_title,other.m_title);
|
|
std::swap(m_intro,other.m_intro);
|
|
std::swap(m_children,other.m_children);
|
|
+ // reparent children
|
|
+ for (auto &child : m_children)
|
|
+ {
|
|
+ child->m_parent = this;
|
|
+ }
|
|
}
|
|
|
|
private:
|