diff options
author | Tobias Markmann <tm@ayena.de> | 2018-05-09 09:17:43 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2018-05-09 13:28:45 (GMT) |
commit | b616c9986a45b5090f23e2cb4b561eda044f676b (patch) | |
tree | 667ad03b4876de49c7ef23ae84cfa996dbcd02ce | |
parent | 1fef8025841bd86eed4677eeb88ef4a2a2eda398 (diff) | |
download | swift-b616c9986a45b5090f23e2cb4b561eda044f676b.zip swift-b616c9986a45b5090f23e2cb4b561eda044f676b.tar.bz2 |
Fix extra semicolon warning in QtDBUSURIHandler.cpp
Test-Information:
N/A.
Change-Id: I4ddf3ad405e424a2b038e8a7421ad455df412960
-rw-r--r-- | Swift/QtUI/QtDBUSURIHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtDBUSURIHandler.cpp b/Swift/QtUI/QtDBUSURIHandler.cpp index 34659f4..a1446c3 100644 --- a/Swift/QtUI/QtDBUSURIHandler.cpp +++ b/Swift/QtUI/QtDBUSURIHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2016 Isode Limited. + * Copyright (c) 2011-2018 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -19,7 +19,7 @@ using namespace Swift; namespace { class DBUSAdaptor: public QDBusAbstractAdaptor { Q_OBJECT - Q_CLASSINFO("D-Bus Interface", "im.swift.Swift.URIHandler"); + Q_CLASSINFO("D-Bus Interface", "im.swift.Swift.URIHandler") public: DBUSAdaptor(QtDBUSURIHandler* uriHandler) : QDBusAbstractAdaptor(uriHandler), uriHandler(uriHandler) { } |