Remove unused includes
[kdepim.git] / grantleeeditor / contactthemeeditor / contacteditorutil.cpp
blobc5f241cfb638df563ace4a201b98719f98996873
1 /*
2 Copyright (C) 2013-2016 Montel Laurent <montel@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
19 #include "contacteditorutil.h"
21 ContactEditorUtil::ContactEditorUtil()
26 QString ContactEditorUtil::defaultContact() const
29 const QString contact = QStringLiteral("BEGIN:VCARD\n"
30 "ADR;TYPE=home:;;10 street Eiffel Tower\n;Paris;;75016;France\n"
31 "EMAIL:test@kde.org\n"
32 "FN:Test\n"
33 "N:Test;;;;\n"
34 "ORG:kde\n"
35 "TEL;TYPE=HOME:+33 12345678\n"
36 "UID:{851e0b81-8f95-40d2-a6a6-a9dbee2be12d}\n"
37 "URL:www.kde.org\n"
38 "VERSION:3.0\n"
39 "END:VCARD");
40 return contact;