File indexing completed on 2025-01-19 04:46:40
0001 /* 0002 SPDX-FileCopyrightText: 2016-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "nonbreakingspaceplugineditor.h" 0008 #include "nonbreakingspaceplugineditorinterface.h" 0009 #include <KPluginFactory> 0010 0011 K_PLUGIN_CLASS_WITH_JSON(NonBreakingSpacePluginEditor, "kmail_nonbreakingspaceeditorplugin.json") 0012 0013 NonBreakingSpacePluginEditor::NonBreakingSpacePluginEditor(QObject *parent, const QList<QVariant> &) 0014 : MessageComposer::PluginEditor(parent) 0015 { 0016 } 0017 0018 NonBreakingSpacePluginEditor::~NonBreakingSpacePluginEditor() = default; 0019 0020 MessageComposer::PluginEditorInterface *NonBreakingSpacePluginEditor::createInterface(QObject *parent) 0021 { 0022 return new NonBreakingSpacePluginEditorInterface(parent); 0023 } 0024 0025 #include "nonbreakingspaceplugineditor.moc" 0026 0027 #include "moc_nonbreakingspaceplugineditor.cpp"