Akonadi Contacts

categorieseditabstractwidget.cpp
1 /*
2  This file is part of Contact Editor.
3 
4  SPDX-FileCopyrightText: 2017-2023 Laurent Montel <[email protected]>
5 
6  SPDX-License-Identifier: LGPL-2.0-or-later
7 */
8 
9 #include "categorieseditabstractwidget.h"
10 
11 using namespace ContactEditor;
12 CategoriesEditAbstractWidget::CategoriesEditAbstractWidget(QWidget *parent)
13  : QWidget(parent)
14 {
15 }
16 
17 CategoriesEditAbstractWidget::~CategoriesEditAbstractWidget() = default;
18 
19 void CategoriesEditAbstractWidget::loadContact(const KContacts::Addressee &contact)
20 {
21  Q_UNUSED(contact)
22 }
23 
24 void CategoriesEditAbstractWidget::storeContact(KContacts::Addressee &contact) const
25 {
26  Q_UNUSED(contact)
27 }
28 
29 void CategoriesEditAbstractWidget::setReadOnly(bool readOnly)
30 {
31  Q_UNUSED(readOnly)
32 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sat Apr 1 2023 04:09:04 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.