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

« back to all changes in this revision

Viewing changes to mailcommon/filter/filteractionsettransport.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:
26
26
#include <KDE/Mailtransport/TransportComboBox>
27
27
#include <KDE/Mailtransport/TransportManager>
28
28
 
29
 
#include <QtGui/QTextDocument>
 
29
#include <QTextDocument>
 
30
#include <QPointer>
30
31
 
31
32
using namespace MailCommon;
32
33
 
57
58
  argsFromString( argsStr );
58
59
  if ( !MailTransport::TransportManager::self()->transportById( mParameter,false ) )
59
60
  {
60
 
    FilterActionMissingTransportDialog *dlg = new FilterActionMissingTransportDialog( filterName );
 
61
    QPointer<FilterActionMissingTransportDialog> dlg = new FilterActionMissingTransportDialog( filterName );
61
62
    if ( dlg->exec() ) {
62
63
      mParameter = dlg->selectedTransport();
63
64
      needUpdate = true;
148
149
  }
149
150
  return label() + QLatin1String( " \"" ) + ( mTransportName.isEmpty() ? Qt::escape( argsAsString() ) : mTransportName ) + QLatin1String( "\"" );
150
151
}
 
152
 
 
153
#include "filteractionsettransport.moc"