/* This file is part of the KDE libraries SPDX-FileCopyrightText: 2023 Hannah von Reth SPDX-License-Identifier: LGPL-2.0-or-later */ #import #import #include namespace MacUtils { void setBadgeLabelText(const QString &text) { [[[NSApplication sharedApplication] dockTile] setBadgeLabel:text.toNSString()]; } }