mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
This will make it easier to test all sorts of notifications with our notification widget. Just run `plasma-mobile-notificationtest [test-name]`.
12 lines
300 B
C
12 lines
300 B
C
// SPDX-FileCopyrightText: 2024 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
static const QLoggingCategory &LOGGING_CATEGORY()
|
|
{
|
|
static const QLoggingCategory category("plasma-mobile-notificationtest");
|
|
return category;
|
|
}
|