diff options
Diffstat (limited to 'Swiften/StreamStack/LowLayer.cpp')
-rw-r--r-- | Swiften/StreamStack/LowLayer.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/StreamStack/LowLayer.cpp b/Swiften/StreamStack/LowLayer.cpp index ff4ca17..c94dafe 100644 --- a/Swiften/StreamStack/LowLayer.cpp +++ b/Swiften/StreamStack/LowLayer.cpp @@ -1,7 +1,7 @@ /* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * Copyright (c) 2010-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. */ #include <Swiften/StreamStack/LowLayer.h> @@ -12,15 +12,15 @@ namespace Swift { -LowLayer::LowLayer() : parentLayer(NULL) { +LowLayer::LowLayer() : parentLayer(nullptr) { } LowLayer::~LowLayer() { } void LowLayer::writeDataToParentLayer(const SafeByteArray& data) { - assert(parentLayer); - parentLayer->handleDataRead(data); + assert(parentLayer); + parentLayer->handleDataRead(data); } } |