From ee52a35f9126dd31894e64aa14472e7182af7203 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Sun, 16 Nov 2025 14:56:29 +0100 Subject: [PATCH] Remove Google Ads script from header container in app.cpp to streamline the application and improve loading performance. --- src/app.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/app.cpp b/src/app.cpp index f83d5c3..8bdc78f 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -256,18 +256,6 @@ Wt::WHBoxLayout *App::createActionLayout(Wt::WVBoxLayout *verticalContainer) { void App::createHeadContainer(Wt::WVBoxLayout *layout) { auto header = layout->addWidget(std::make_unique()); header->addNew("

ypChat

")->setInline(true); - header->addNew((std::string)"" + - "" + - "", Wt::TextFormat::UnsafeXHTML) - ->setInline(true); header->setStyleClass("header"); }