File indexing completed on 2025-01-19 04:46:50
0001 /* 0002 SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "markdownabstract.h" 0008 0009 MarkdownAbstract::MarkdownAbstract() = default; 0010 0011 MarkdownAbstract::~MarkdownAbstract() = default; 0012 0013 void MarkdownAbstract::setText(const QString &str) 0014 { 0015 mText = str; 0016 }