diff options
Diffstat (limited to 'connection.cpp')
-rw-r--r-- | connection.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/connection.cpp b/connection.cpp index 01392848..5127dea8 100644 --- a/connection.cpp +++ b/connection.cpp @@ -44,6 +44,11 @@ Connection::Connection(QUrl server, QObject* parent) d->data = new ConnectionData(server); } +Connection::Connection() + : Connection(QUrl("https://matrix.org")) +{ +} + Connection::~Connection() { delete d; |