From a087bf11688b35b0c4042872778458b31f1912e5 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 15 Mar 2025 08:44:50 -0500 Subject: [PATCH] employ stopModule --- modules/print/src/print.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/print/src/print.cpp b/modules/print/src/print.cpp index 971ee16..2d60446 100644 --- a/modules/print/src/print.cpp +++ b/modules/print/src/print.cpp @@ -10,7 +10,7 @@ Print::~Print() { void Print::run() { std::cout << "Print lib loaded and run!\n"; - app.unload(self); + app.stopModule(self); //app.end(); - std::cout << "app.unload() called\n"; + std::cout << "app.stopModule() called\n"; }