~ubuntu-branches/ubuntu/maverick/digikam/maverick

« back to all changes in this revision

Viewing changes to utilities/lighttable/lighttablewindow.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2009-03-17 23:07:56 UTC
  • mfrom: (1.2.20 upstream) (3.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20090317230756-db5b8rqjwb2j35e5
Tags: 2:0.10.0-1ubuntu1
* Remaining changes to Debian (committed to Debian SVN):
  - Depends: kde-icons-oxygen dropped (included through kdelibs)
  - Recommends: kipi-plugins added (provides major functionality)
  - debian/digikamthemedesigner.manpage: add missing manpage
* Remaning change to Debian:
  - Section: devel for -dbg package (no debug in Jaunty)

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
 
349
349
    connect(d->previewView, SIGNAL(signalRightPanelLeftButtonClicked()),
350
350
            this, SLOT(slotRightPanelLeftButtonClicked()));
 
351
 
 
352
    connect(this, SIGNAL(signalWindowHasMoved()),
 
353
            d->leftZoomBar, SLOT(slotUpdateTrackerPos()));
 
354
 
 
355
    connect(this, SIGNAL(signalWindowHasMoved()),
 
356
            d->rightZoomBar, SLOT(slotUpdateTrackerPos()));
351
357
}
352
358
 
353
359
void LightTableWindow::setupActions()
955
961
        kioURL = fileURL;
956
962
 
957
963
    SyncJobResult deleteResult = SyncJob::del(kioURL, useTrash);
958
 
    if (deleteResult)
 
964
    if (!deleteResult)
959
965
    {
960
966
        KMessageBox::error(this, deleteResult.errorString);
961
967
        return;
1612
1618
    d->rightSideBar->setStyle(AlbumSettings::instance()->getSidebarTitleStyle());
1613
1619
}
1614
1620
 
 
1621
void LightTableWindow::moveEvent(QMoveEvent *e)
 
1622
{
 
1623
    Q_UNUSED(e)
 
1624
    emit signalWindowHasMoved();
 
1625
}
 
1626
 
1615
1627
}  // namespace Digikam