~ubuntu-branches/ubuntu/raring/kdepimlibs/raring-proposed

« back to all changes in this revision

Viewing changes to akonadi/contact/actions/sendsmsaction.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-07-26 17:13:11 UTC
  • mfrom: (1.1.81)
  • Revision ID: package-import@ubuntu.com-20120726171311-j2heoxylb6lbhg4w
Tags: 4:4.9.0-0ubuntu1
* New upstream release
* Use direct build-depends versions rather than kde-sc-dev-latest

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
  command = command.replace( QLatin1String( "%N" ), phoneNumber.number() );
82
82
  command = command.replace( QLatin1String( "%n" ), strippedSmsNumber( number ) );
83
83
  command = command.replace( QLatin1String( "%t" ), dlg.message() );
84
 
 
 
84
  //Bug: 293232 In KDE3 We used %F to replace text
 
85
  command = command.replace( QLatin1String( "%F" ), dlg.message() );
85
86
  KRun::runCommand( command, 0 );
86
87
}