blob: 735ad9cb292066652d6b058b32ef3ed44d6705a5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 | //
// C++ Implementation: kbbookmarkitem
//
// Description: 
//
//
// Author: Magnus Kulke <mkulke@magnusmachine>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "kbbookmarkitem.h"
#include "kbsiteinfo.h"
KbBookmarkItem::KbBookmarkItem(TQListView *view, TQListViewItem *after, KbSiteInfo *site) : TQListViewItem(view, after)
{
	mp_siteinfo = site;
	setText(0, mp_siteinfo->GetName());
}
KbBookmarkItem::~KbBookmarkItem()
{
}
 |