~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to kfile/kfiletreeview.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
    d->mSourceModel->dirLister()->openUrl(KUrl(QDir::root().absolutePath()), KDirLister::Keep);
97
97
 
98
 
    connect(this, SIGNAL(activated(const QModelIndex&)),
99
 
            this, SLOT(_k_activated(const QModelIndex&)));
100
 
    connect(selectionModel(), SIGNAL(currentChanged(const QModelIndex&, const QModelIndex&)),
101
 
            this, SLOT(_k_currentChanged(const QModelIndex&, const QModelIndex&)));
 
98
    connect(this, SIGNAL(activated(QModelIndex)),
 
99
            this, SLOT(_k_activated(QModelIndex)));
 
100
    connect(selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)),
 
101
            this, SLOT(_k_currentChanged(QModelIndex,QModelIndex)));
102
102
 
103
 
    connect(d->mSourceModel, SIGNAL(expand(const QModelIndex&)),
104
 
            this, SLOT(_k_expanded(const QModelIndex&)));
 
103
    connect(d->mSourceModel, SIGNAL(expand(QModelIndex)),
 
104
            this, SLOT(_k_expanded(QModelIndex)));
105
105
}
106
106
 
107
107
KFileTreeView::~KFileTreeView()