~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to kmail/archivefolderdialog.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  setCaption( i18n( "Archive Folder" ) );
57
57
  setButtons( Ok|Cancel );
58
58
  setDefaultButton( Ok );
 
59
  setButtonText(KDialog::Ok,i18n("Archive"));
59
60
  setModal( true );
60
61
  QWidget *mainWidget = new QWidget( this );
61
62
  QGridLayout *mainLayout = new QGridLayout( mainWidget );
65
66
 
66
67
  int row = 0;
67
68
 
68
 
  // TODO: better label for "Ok" button
69
69
  // TODO: Explaination label
70
 
  // TODO: Use QFormLayout in KDE4
71
70
 
72
71
  QLabel *folderLabel = new QLabel( i18n( "&Folder:" ), mainWidget );
73
72
  mainLayout->addWidget( folderLabel, row, 0 );
137
136
    && ( col.rights() & Akonadi::Collection::CanDeleteCollection )
138
137
    && !folder->isStructural()
139
138
    && !folder->isSystemFolder()
140
 
#ifndef KDEPIM_NO_NEPOMUK    
141
 
    && ( col.resource() != QLatin1String( "akonadi_nepomuktag_resource" ) ) 
142
 
#endif              
143
 
    ;
 
139
    && ( col.resource() != QLatin1String( "akonadi_nepomuktag_resource" ) );
144
140
}
145
141
 
146
142
void ArchiveFolderDialog::slotRecursiveCheckboxClicked()