diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:11:21 -0600 |
commit | f537c21b68e08f649b1b297bce8f3904603137e0 (patch) | |
tree | fb33065387509dea898c90022ddec9c3f8ede86d /kfind/kfwin.cpp | |
parent | dc5f267664506a312203c26bfe9001a448b0bb0f (diff) | |
download | tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kfind/kfwin.cpp')
-rw-r--r-- | kfind/kfwin.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kfind/kfwin.cpp b/kfind/kfwin.cpp index 6cbbe1268..7b5f510bc 100644 --- a/kfind/kfwin.cpp +++ b/kfind/kfwin.cpp @@ -105,7 +105,7 @@ TQString KfFileLVI::key(int column, bool) const } KfindWindow::KfindWindow( TQWidget *parent, const char *name ) - : KListView( parent, name ) + : TDEListView( parent, name ) ,m_baseDir("") ,m_menu(0) { @@ -134,8 +134,8 @@ KfindWindow::KfindWindow( TQWidget *parent, const char *name ) connect( this, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT( selectionHasChanged() )); - connect(this, TQT_SIGNAL(contextMenu(KListView *, TQListViewItem*,const TQPoint&)), - this, TQT_SLOT(slotContextMenu(KListView *,TQListViewItem*,const TQPoint&))); + connect(this, TQT_SIGNAL(contextMenu(TDEListView *, TQListViewItem*,const TQPoint&)), + this, TQT_SLOT(slotContextMenu(TDEListView *,TQListViewItem*,const TQPoint&))); connect(this, TQT_SIGNAL(executed(TQListViewItem*)), this, TQT_SLOT(slotExecute(TQListViewItem*))); @@ -330,10 +330,10 @@ void KfindWindow::slotExecute(TQListViewItem* item) ((KfFileLVI*)item)->fileitem.run(); } -// Resizes KListView to occupy all visible space +// Resizes TDEListView to occupy all visible space void KfindWindow::resizeEvent(TQResizeEvent *e) { - KListView::resizeEvent(e); + TDEListView::resizeEvent(e); resetColumns(false); clipper()->repaint(); } @@ -390,7 +390,7 @@ void KfindWindow::resetColumns(bool init) setColumnWidth(1, dir_w); } -void KfindWindow::slotContextMenu(KListView *,TQListViewItem *item,const TQPoint&p) +void KfindWindow::slotContextMenu(TDEListView *,TQListViewItem *item,const TQPoint&p) { if (!item) return; int count = selectedItems().count(); @@ -401,13 +401,13 @@ void KfindWindow::slotContextMenu(KListView *,TQListViewItem *item,const TQPoint }; if (m_menu==0) - m_menu = new KPopupMenu(this); + m_menu = new TDEPopupMenu(this); else m_menu->clear(); if (count == 1) { - //menu = new KPopupMenu(item->text(0), this); + //menu = new TDEPopupMenu(item->text(0), this); m_menu->insertTitle(item->text(0)); m_menu->insertItem(SmallIcon("fileopen"),i18n("Menu item", "Open"), this, TQT_SLOT(openBinding())); m_menu->insertItem(SmallIcon("window_new"),i18n("Open Folder"), this, TQT_SLOT(openFolder())); |