~ubuntu-branches/ubuntu/trusty/kopete/trusty

« back to all changes in this revision

Viewing changes to protocols/groupwise/libgroupwise/tasks/statustask.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-23 17:46:40 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20131123174640-gz1zjv1xqh81bi2h
Tags: 4:4.11.80-0ubuntu1
* New upstream beta release
* Bump build dependency to libotr5-dev
* Update symbols
* Update install files
* Drop new_linphone.diff, not required anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
bool StatusTask::take( Transfer * transfer )
35
35
{
36
 
        EventTransfer * event;
37
 
        if ( forMe( transfer, event ) )
 
36
        if ( forMe( transfer ) )
38
37
        {
 
38
                EventTransfer * event = static_cast<EventTransfer *>(transfer);
39
39
                client()->debug( "Got a status change!" );
40
40
                client()->debug( QString( "%1 changed status to %2, message: %3" ).arg( event->source() ).arg( event->status() ).arg( event->statusText() ) );
41
41
                emit gotStatus( event->source().toLower(), event->status(), event->statusText() );