~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/qtui/chatview.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-02-17 12:49:50 UTC
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20100217124950-v9hajw5d2xa6fszn
Tags: upstream-0.6~beta1
ImportĀ upstreamĀ versionĀ 0.6~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
  connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int)));
80
80
 
81
81
  // only connect if client is synched with a core
82
 
  if(Client::isSynced())
 
82
  if(Client::isConnected())
83
83
    connect(Client::ignoreListManager(), SIGNAL(ignoreListChanged()), this, SLOT(invalidateFilter()));
84
84
}
85
85
 
92
92
    case Qt::Key_PageUp:
93
93
    case Qt::Key_PageDown:
94
94
      if(!verticalScrollBar()->isVisible()) {
95
 
        scene()->requestBacklog();
96
 
        return true;
 
95
        scene()->requestBacklog();
 
96
        return true;
97
97
      }
98
98
    default:
99
99
      break;