~ubuntu-branches/ubuntu/raring/quassel/raring-proposed

« back to all changes in this revision

Viewing changes to src/core/coresession.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-08-11 12:48:08 UTC
  • mfrom: (1.1.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20100811124808-wl3zpp4gpbzmvn4t
Tags: 0.7~beta1-0ubuntu1
* New upstream beta release
  - Add libqca2-dev to build-depends for blowfish support
* Switch to source format v3 (Quilt) to use .bz2 tarball
  - Drop build-depends on quilt and update debian/rules
  - Add debian/source/format

Show diffs side-by-side

added added

removed removed

Lines of Context:
515
515
 
516
516
    if(!net->isConnected())
517
517
      continue;
 
518
 
518
519
    identity = net->identityPtr();
519
520
    if(!identity)
520
521
      continue;
530
531
    }
531
532
  }
532
533
}
 
534
 
 
535
 
 
536
void CoreSession::globalAway(const QString &msg) {
 
537
  QHash<NetworkId, CoreNetwork *>::iterator netIter = _networks.begin();
 
538
  CoreNetwork *net = 0;
 
539
  while(netIter != _networks.end()) {
 
540
    net = *netIter;
 
541
    netIter++;
 
542
 
 
543
    if(!net->isConnected())
 
544
      continue;
 
545
 
 
546
    net->userInputHandler()->issueAway(msg, false /* no force away */);
 
547
  }
 
548
}