summaryrefslogtreecommitdiffstats
path: root/src/kile/kilestructurewidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kilestructurewidget.cpp')
-rw-r--r--src/kile/kilestructurewidget.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kile/kilestructurewidget.cpp b/src/kile/kilestructurewidget.cpp
index a4db758..2419548 100644
--- a/src/kile/kilestructurewidget.cpp
+++ b/src/kile/kilestructurewidget.cpp
@@ -82,7 +82,7 @@
////////////////////// KileListViewItem with all info //////////////////////
KileListViewItem::KileListViewItem(TQListViewItem * parent, TQListViewItem * after, const TQString &title, const KURL &url, uint line, uint column, int type, int level, uint startline, uint startcol) :
- KListViewItem(parent,after),
+ TDEListViewItem(parent,after),
m_title(title), m_url(url), m_line(line), m_column(column), m_type(type), m_level(level),
m_startline(startline), m_startcol(startcol)
{
@@ -90,12 +90,12 @@ KileListViewItem::KileListViewItem(TQListViewItem * parent, TQListViewItem * aft
}
KileListViewItem::KileListViewItem(TQListView * parent, const TQString & label) :
- KListViewItem(parent,label),
+ TDEListViewItem(parent,label),
m_title(label), m_url(KURL()), m_line(0), m_column(0), m_type(KileStruct::None), m_level(0)
{}
KileListViewItem::KileListViewItem(TQListViewItem * parent, const TQString & label) :
- KListViewItem(parent,label),
+ TDEListViewItem(parent,label),
m_title(label), m_url(KURL()), m_line(0), m_column(0), m_type(KileStruct::None), m_level(0)
{}
@@ -112,7 +112,7 @@ void KileListViewItem::setItemEntry()
////////////////////// introduce a new ToolTip //////////////////////
-KileListViewToolTip::KileListViewToolTip(KListView *listview) : TQToolTip(listview->viewport()), m_listview(listview)
+KileListViewToolTip::KileListViewToolTip(TDEListView *listview) : TQToolTip(listview->viewport()), m_listview(listview)
{}
void KileListViewToolTip::maybeTip(const TQPoint &p)
@@ -145,7 +145,7 @@ namespace KileWidget
////////////////////// StructureList listview //////////////////////
StructureList::StructureList(Structure *stack, KileDocument::Info *docinfo) :
- KListView(stack),
+ TDEListView(stack),
m_stack(stack), m_docinfo(docinfo)
{
show();
@@ -161,7 +161,7 @@ namespace KileWidget
//connect(this, TQT_SIGNAL(clicked(TQListViewItem *)), m_stack, TQT_SLOT(slotClicked(TQListViewItem *)));
connect(this, TQT_SIGNAL(doubleClicked(TQListViewItem *)), m_stack, TQT_SLOT(slotDoubleClicked(TQListViewItem *)));
- connect(this, TQT_SIGNAL(contextMenu(KListView *, TQListViewItem *, const TQPoint & )), m_stack, TQT_SLOT(slotPopup(KListView *, TQListViewItem * , const TQPoint & )));
+ connect(this, TQT_SIGNAL(contextMenu(TDEListView *, TQListViewItem *, const TQPoint & )), m_stack, TQT_SLOT(slotPopup(TDEListView *, TQListViewItem * , const TQPoint & )));
connect(this, TQT_SIGNAL(executed(TQListViewItem*)), m_stack, TQT_SLOT(slotClicked(TQListViewItem*)));
connect(m_stack, TQT_SIGNAL(configChanged()), this, TQT_SLOT(slotConfigChanged()));
@@ -611,7 +611,7 @@ namespace KileWidget
m_default = new StructureList(this, 0L);
m_default->activate();
- m_popup = new KPopupMenu(this, "structureview_popup");
+ m_popup = new TDEPopupMenu(this, "structureview_popup");
}
Structure::~Structure()
@@ -728,7 +728,7 @@ namespace KileWidget
// - sectioning: 10 - 16
// - graphics: 100ff
- void Structure::slotPopup(KListView *, TQListViewItem *itm, const TQPoint &point)
+ void Structure::slotPopup(TDEListView *, TQListViewItem *itm, const TQPoint &point)
{
KILE_DEBUG() << "\tStructure::slotPopup" << endl;