File indexing completed on 2024-11-10 04:40:39
0001 /* 0002 SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org> 0003 SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 #include "collectionutils.h" 0007 #include "entitytreemodel.h" 0008 0009 using namespace Akonadi; 0010 0011 Collection CollectionUtils::fromIndex(const QModelIndex &index) 0012 { 0013 return index.data(EntityTreeModel::CollectionRole).value<Collection>(); 0014 }