Conflicts: kaddressbook/merge/searchduplicate/resultduplicatetreewidget.cpp kaddressbook/merge/searchduplicate/resultduplicatetreewidget.h kmail/mailmerge/autotests/mailmergewidgettest.cpp kmail/mailmerge/mailmergedialog.cpp kmail/mailmerge/mailmergedialog.h kmail/mailmerge/tests/CMakeLists.txt kmail/mailmerge/widgets/attachmentlistwidget.cpp kmail/mailmerge/widgets/attachmentlistwidget.hwilder-work
commit
caf3ba742d
13 changed files with 93 additions and 20 deletions
@ -0,0 +1,31 @@ |
||||
/*
|
||||
Copyright (c) 2015 Montel Laurent <montel@kde.org> |
||||
|
||||
This program is free software; you can redistribute it and/or modify it |
||||
under the terms of the GNU General Public License, version 2, as |
||||
published by the Free Software Foundation. |
||||
|
||||
This program is distributed in the hope that it will be useful, but |
||||
WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License along |
||||
with this program; if not, write to the Free Software Foundation, Inc., |
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
#include "addressbookwidget.h" |
||||
|
||||
using namespace MailMerge; |
||||
|
||||
AddressBookWidget::AddressBookWidget(QWidget *parent) |
||||
: QWidget(parent) |
||||
{ |
||||
|
||||
} |
||||
|
||||
AddressBookWidget::~AddressBookWidget() |
||||
{ |
||||
|
||||
} |
||||
|
||||
@ -0,0 +1,32 @@ |
||||
/*
|
||||
Copyright (c) 2015 Montel Laurent <montel@kde.org> |
||||
|
||||
This program is free software; you can redistribute it and/or modify it |
||||
under the terms of the GNU General Public License, version 2, as |
||||
published by the Free Software Foundation. |
||||
|
||||
This program is distributed in the hope that it will be useful, but |
||||
WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License along |
||||
with this program; if not, write to the Free Software Foundation, Inc., |
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
|
||||
#ifndef ADDRESSBOOKWIDGET_H |
||||
#define ADDRESSBOOKWIDGET_H |
||||
|
||||
#include <QWidget> |
||||
namespace MailMerge { |
||||
class AddressBookWidget : public QWidget |
||||
{ |
||||
Q_OBJECT |
||||
public: |
||||
explicit AddressBookWidget(QWidget *parent=0); |
||||
~AddressBookWidget(); |
||||
}; |
||||
} |
||||
|
||||
#endif // ADDRESSBOOKWIDGET_H
|
||||
Loading…
Reference in new issue