summaryrefslogtreecommitdiffstats
path: root/src/gui/addresslistviewitem.h
diff options
context:
space:
mode:
authorLubos Dolezel <lubos@dolezel.info>2015-06-02 22:03:32 +0200
committerLubos Dolezel <lubos@dolezel.info>2015-06-02 22:03:32 +0200
commitf9183105745653ccdc137126aa8f4f1269014af2 (patch)
tree56c606a58849846ed7a2471bc3714bf226ae6ea1 /src/gui/addresslistviewitem.h
parentbf8bdac13a2d399ddded91de4bfb05e8dad0a0c8 (diff)
downloadtwinkle-f9183105745653ccdc137126aa8f4f1269014af2.tar
twinkle-f9183105745653ccdc137126aa8f4f1269014af2.tar.gz
twinkle-f9183105745653ccdc137126aa8f4f1269014af2.tar.lz
twinkle-f9183105745653ccdc137126aa8f4f1269014af2.tar.xz
twinkle-f9183105745653ccdc137126aa8f4f1269014af2.zip
Ported getaddressform to Qt4
Diffstat (limited to 'src/gui/addresslistviewitem.h')
-rw-r--r--src/gui/addresslistviewitem.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/gui/addresslistviewitem.h b/src/gui/addresslistviewitem.h
deleted file mode 100644
index c001943..0000000
--- a/src/gui/addresslistviewitem.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- Copyright (C) 2005-2009 Michel de Boer <michel@twinklephone.com>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-*/
-
-#ifndef _ADDRESSLISTVIEWITEM_H
-#define _ADDRESSLISTVIEWITEM_H
-
-#include "address_book.h"
-#include "q3listview.h"
-
-class AddressListViewItem : public Q3ListViewItem {
-private:
- t_address_card address_card;
-
-public:
- AddressListViewItem(Q3ListView *parent, const t_address_card &card);
- t_address_card getAddressCard(void) const;
- void update(const t_address_card &card);
-};
-
-
-#endif