~ubuntu-branches/ubuntu/karmic/digikam/karmic

« back to all changes in this revision

Viewing changes to utilities/cameragui/freespacewidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2009-02-14 17:52:28 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20090214175228-axs6z8e5pgg7bqfx
Tags: 2:0.10.0~rc2-0ubuntu1
* New upstream release (release candidate 2)
* patches/01-kubuntu-fix-armel.patch: 
  - Dropped, included upstream
* control: 
  - Remove quilt from build-depends (no patches)
  - Add liblensfun-dev to build-depends (now in main)

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
{
132
132
    d->timer->stop();
133
133
    delete d->timer;
 
134
    delete d->toolTip;
134
135
    delete d;
135
136
}
136
137
 
355
356
 
356
357
void FreeSpaceWidget::enterEvent(QEvent *e)
357
358
{
 
359
    Q_UNUSED(e)
358
360
    d->toolTip->show();
359
361
}
360
362
 
361
363
void FreeSpaceWidget::leaveEvent(QEvent* e)
362
364
{
 
365
    Q_UNUSED(e)
363
366
    d->toolTip->hide();
364
367
}
365
368