Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <kamm@incasoftware.de>2014-12-17 16:09:57 +0300
committerChristian Kamm <kamm@incasoftware.de>2014-12-18 17:39:51 +0300
commit6c7acd585e1a5758180d71de39119db5d890093d (patch)
treec0be1cef8c44737b5976752586e0c2da2cff2d91 /src/gui/sslbutton.h
parenta006c6962caa403ef9f07907856cd178b50f77f2 (diff)
Account: Split into libsync/Account and gui/AccountState.
This allows all the account state information to live in gui while the sync-relevant data stays in libsync. I also moved quotainfo to gui since it depends on the account state.
Diffstat (limited to 'src/gui/sslbutton.h')
-rw-r--r--src/gui/sslbutton.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/sslbutton.h b/src/gui/sslbutton.h
index 0e717f4e4..b96980489 100644
--- a/src/gui/sslbutton.h
+++ b/src/gui/sslbutton.h
@@ -25,6 +25,7 @@ class QSslConfiguration;
namespace OCC {
class Account;
+class AccountState;
class SslButton : public QToolButton
{
@@ -32,7 +33,7 @@ class SslButton : public QToolButton
public:
explicit SslButton(QWidget *parent = 0);
QString protoToString(QSsl::SslProtocol proto);
- void updateAccountInfo(Account *account);
+ void updateAccountState(AccountState *accountState);
private:
QMenu* buildCertMenu(QMenu *parent, const QSslCertificate& cert,