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

« back to all changes in this revision

Viewing changes to kio/kfile/kfilemetadataprovider.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:
323
323
    const QFontMetrics metrics(parent->font());
324
324
    ratingWidget->setPixmapSize(metrics.height());
325
325
 
326
 
    connect(ratingWidget, SIGNAL(ratingChanged(unsigned int)),
327
 
            q, SLOT(slotRatingChanged(unsigned int)));
 
326
    connect(ratingWidget, SIGNAL(ratingChanged(uint)),
 
327
            q, SLOT(slotRatingChanged(uint)));
328
328
 
329
329
    m_ratingWidget = ratingWidget;
330
330
 
355
355
    commentWidget->setText(comment);
356
356
    commentWidget->setReadOnly(m_readOnly);
357
357
 
358
 
    connect(commentWidget, SIGNAL(commentChanged(const QString&)),
359
 
            q, SLOT(slotCommentChanged(const QString&)));
 
358
    connect(commentWidget, SIGNAL(commentChanged(QString)),
 
359
            q, SLOT(slotCommentChanged(QString)));
360
360
 
361
361
    m_commentWidget = commentWidget;
362
362