From b882b47c8201c5ef29d97747655c9751e47f2066 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sat, 30 Jun 2018 17:08:37 +0900 Subject: Use C++14 [[deprecated]] attribute instead of doc-comment Testing the waters in one place to start with. --- lib/connection.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/connection.h b/lib/connection.h index 2f1b0950..a1662449 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -166,12 +166,13 @@ namespace QMatrixClient User* user(); QString userId() const; QString deviceId() const; - /** @deprecated Use accessToken() instead. */ - Q_INVOKABLE QString token() const; QByteArray accessToken() const; Q_INVOKABLE SyncJob* syncJob() const; Q_INVOKABLE int millisToReconnect() const; + [[deprecated("Use accessToken() instead")]] + Q_INVOKABLE QString token() const; + /** * Call this before first sync to load from previously saved file. * -- cgit v1.2.3