~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to akonadiconsole/collectioninternalspage.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
{
35
35
  ui.idLabel->setText( QString::number( col.id() ) );
36
36
  ui.ridEdit->setText( col.remoteId() );
 
37
  ui.rrevEdit->setText( col.remoteRevision() );
37
38
  ui.resourceLabel->setText( col.resource() );
38
39
  ui.contentTypes->setItems( col.contentMimeTypes() );
39
40
}
41
42
void CollectionInternalsPage::save(Akonadi::Collection & col)
42
43
{
43
44
  col.setRemoteId( ui.ridEdit->text() );
 
45
  col.setRemoteRevision( ui.rrevEdit->text() );
44
46
  col.setContentMimeTypes( ui.contentTypes->items() );
45
47
}
46
48