You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// 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()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|