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

« back to all changes in this revision

Viewing changes to src/client/coreconnection.h

  • 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:
71
71
  inline int progressValue() const;
72
72
  inline QString progressText() const;
73
73
 
 
74
  //! Check if we consider the last connect as reconnect
 
75
  inline bool wasReconnect() const { return _wasReconnect; }
 
76
 
74
77
#ifdef HAVE_SSL
75
78
  inline const QSslSocket *sslSocket() const;
76
79
#endif
182
185
  QString _progressText;
183
186
 
184
187
  QString _coreInfoString(const QVariantMap &);
 
188
  bool _wasReconnect;
 
189
  bool _requestedDisconnect;
185
190
 
186
191
  inline CoreAccountModel *accountModel() const;
187
192