mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 04:28:49 +03:00
11 lines
218 B
C++
11 lines
218 B
C++
#include "Manager.h"
|
|
|
|
#include <QTextDocumentFragment>
|
|
|
|
#include "Utils.h"
|
|
|
|
QString
|
|
NotificationsManager::formatNotification(const QString &text)
|
|
{
|
|
return QTextDocumentFragment::fromHtml(text).toPlainText();
|
|
}
|