summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-15 18:15:00 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-15 18:15:00 +0200
commit99167cd3a30cfc03b2080b329c6ec2e7e34898f2 (patch)
treed35c04a0feb0a28f0ea433803f63f711fe7beea2
parentcbc4ce750f2edc797a50a1138c7894dee8919b05 (diff)
unstable: pushing changes.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
-rw-r--r--Private/Servers/CoreDisplay/Sources/CoreDisplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/Servers/CoreDisplay/Sources/CoreDisplay.c b/Private/Servers/CoreDisplay/Sources/CoreDisplay.c
index 5ea569ae..2a3f31fe 100644
--- a/Private/Servers/CoreDisplay/Sources/CoreDisplay.c
+++ b/Private/Servers/CoreDisplay/Sources/CoreDisplay.c
@@ -13,7 +13,7 @@
/// @brief Called when the server starts.
DWordType ServerStartup(VoidType)
{
- CDInitDisplay(kDMNoFlags); // init standard display. Need to notify other endpoits.
+ CDInitDisplay(kCDNoFlags); // init standard display. Need to notify other endpoits.
// as well.
//
@@ -25,7 +25,7 @@ DWordType ServerStartup(VoidType)
/// @brief Called when the server shuts down.
DWordType ServerShutdown(VoidType)
{
- CDCloseDisplay(); /// takes no arguments.
+ CDCloseDisplay(kCDShutdownAll); /// takes the close flag argument, which tells here to also close the child nodes.
IPCSendMessage(kIPCBroadcastDispose); /// broadcast our presence
return 0;
}