~ubuntu-branches/ubuntu/quantal/kdepimlibs/quantal-proposed

« back to all changes in this revision

Viewing changes to akonadi/itemmovejob.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-07-08 00:32:40 UTC
  • mfrom: (1.1.63 upstream)
  • Revision ID: package-import@ubuntu.com-20110708003240-0gzufcu25rui82r1
Tags: 4:4.6.90-0ubuntu1
* New upstream release candidate
  - Bump build-dep on libakonadi-dev
  - update install files with new library versions
  - update libkcal4.install
  - refresh libakonadi-kde4.symbols, libkcalcore4.symbols,
    libkholidays4.symbols and libkimap4.symbols
  - exclude kde-runtime not kdebase-runtime in rules.
  - Update Vcs links for new location

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
  d->sendCommand( "MOVE" );
62
62
}
63
63
 
 
64
Collection ItemMoveJob::destinationCollection() const
 
65
{
 
66
  Q_D( const ItemMoveJob );
 
67
  return d->destination;
 
68
}
 
69
 
 
70
QList<Item> ItemMoveJob::items() const
 
71
{
 
72
  Q_D( const ItemMoveJob );
 
73
  return d->objectsToMove;
 
74
}
 
75
 
64
76
#include "itemmovejob.moc"