diff options
| author | Montel Laurent <[email protected]> | 2011-07-31 13:33:56 +0200 |
|---|---|---|
| committer | Montel Laurent <[email protected]> | 2011-07-31 13:33:56 +0200 |
| commit | 08d655c2bc107449ee322f8b826710b7e690950b (patch) | |
| tree | 6268fe56b9d4bb7fdad68841836c3265fb178284 /src/views/tooltips/tooltipmanager.cpp | |
| parent | f23e9496f303995557b744c03178f5dbd9b35016 (diff) | |
normalize signals/slots
Diffstat (limited to 'src/views/tooltips/tooltipmanager.cpp')
| -rw-r--r-- | src/views/tooltips/tooltipmanager.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/views/tooltips/tooltipmanager.cpp b/src/views/tooltips/tooltipmanager.cpp index e532bee82..8f18dbde4 100644 --- a/src/views/tooltips/tooltipmanager.cpp +++ b/src/views/tooltips/tooltipmanager.cpp @@ -44,8 +44,8 @@ ToolTipManager::ToolTipManager(QWidget* parent) : m_itemRect() { //m_dolphinModel = static_cast<DolphinModel*>(m_proxyModel->sourceModel()); - //connect(parent, SIGNAL(entered(const QModelIndex&)), - // this, SLOT(requestToolTip(const QModelIndex&))); + //connect(parent, SIGNAL(entered(QModelIndex)), + // this, SLOT(requestToolTip(QModelIndex))); //connect(parent, SIGNAL(viewportEntered()), // this, SLOT(hideToolTip())); @@ -164,9 +164,9 @@ void ToolTipManager::startContentRetrieval() KIO::PreviewJob* job = KIO::filePreview(KFileItemList() << m_item, QSize(256, 256)); - connect(job, SIGNAL(gotPreview(const KFileItem&, const QPixmap&)), - this, SLOT(setPreviewPix(const KFileItem&, const QPixmap&))); - connect(job, SIGNAL(failed(const KFileItem&)), + connect(job, SIGNAL(gotPreview(KFileItem,QPixmap)), + this, SLOT(setPreviewPix(KFileItem,QPixmap))); + connect(job, SIGNAL(failed(KFileItem)), this, SLOT(previewFailed())); } |
