~ubuntu-branches/ubuntu/karmic/quassel/karmic-backports

« back to all changes in this revision

Viewing changes to src/core/coresession.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2009-02-15 19:46:44 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20090215194644-dr40bbv9rxmtzxh4
Tags: 0.4.0~git090215-0ubuntu1
* New upstream git snapshot
  - Show identities and network settings on first start
  - Multi-line paste protection
  - Settings usability improvments
  - Continued bug fixing
* Adjust quassel-data.install for new and removed icons

Show diffs side-by-side

added added

removed removed

Lines of Context:
379
379
  Identity *identity = 0;
380
380
  CoreNetwork *net = 0;
381
381
  IrcUser *me = 0;
382
 
  QString awayReason;
383
382
  while(netIter != _networks.end()) {
384
383
    net = *netIter;
385
384
    netIter++;
421
420
    if(identity->detachAwayEnabled() && !me->isAway()) {
422
421
      if(identity->detachAwayReasonEnabled())
423
422
        awayReason = identity->detachAwayReason();
424
 
      else
425
 
        awayReason = identity->awayReason();
426
423
      net->setAutoAwayActive(true);
427
424
      net->userInputHandler()->handleAway(BufferInfo(), awayReason);
428
425
    }