File indexing completed on 2024-04-28 04:58:10

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2010 David Faure <faure@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #include "htmlextension.h"
0009 
0010 #include <KParts/ReadOnlyPart>
0011 
0012 class HtmlExtensionPrivate
0013 {
0014 };
0015 
0016 HtmlExtension::HtmlExtension(KParts::ReadOnlyPart *parent)
0017     : QObject(parent)
0018     , d(nullptr)
0019 {
0020 }
0021 
0022 HtmlExtension::~HtmlExtension()
0023 {
0024 }
0025 
0026 bool HtmlExtension::hasSelection() const
0027 {
0028     return false;
0029 }
0030 
0031 HtmlExtension *HtmlExtension::childObject(QObject *obj)
0032 {
0033     return obj->findChild<HtmlExtension *>(QString(), Qt::FindDirectChildrenOnly);
0034 }
0035 
0036 #include "moc_htmlextension.cpp"