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

« back to all changes in this revision

Viewing changes to src/qtui/settingspages/chatviewsettingspage.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:
19
19
 ***************************************************************************/
20
20
 
21
21
#include "chatviewsettingspage.h"
 
22
#include "client.h"
22
23
#include "colorbutton.h"
23
24
#include "qtui.h"
24
25
#include "qtuistyle.h"
33
34
  ui.showWebPreview->setEnabled(false);
34
35
#endif
35
36
 
 
37
  // FIXME remove with protocol v11
 
38
  if(!(Client::coreFeatures() & Quassel::SynchronizedMarkerLine)) {
 
39
    ui.autoMarkerLine->setEnabled(false);
 
40
    ui.autoMarkerLine->setChecked(true);
 
41
    ui.autoMarkerLine->setToolTip(tr("You need at 0.6 quasselcore to use this feature"));
 
42
  }
 
43
 
36
44
  initAutoWidgets();
37
45
}
38
46