From 1ae4a5c01901120e6b653a358c2954ffe688f0f3 Mon Sep 17 00:00:00 2001 From: Liv Date: Tue, 15 Aug 2017 15:30:43 -0700 Subject: [PATCH] remove class from function call --- assignment-client/src/octree/OctreeServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assignment-client/src/octree/OctreeServer.cpp b/assignment-client/src/octree/OctreeServer.cpp index ff155b89c0..db97da751f 100644 --- a/assignment-client/src/octree/OctreeServer.cpp +++ b/assignment-client/src/octree/OctreeServer.cpp @@ -935,7 +935,7 @@ void OctreeServer::handleOctreeFileReplacement(QSharedPointer m // so here we just store a special file at our persist path // and then force a stop of the server so that it can pick it up when it relaunches if (!_persistAbsoluteFilePath.isEmpty()) { - OctreeServer::replaceContentFromMessageData(message->getMessage()); + replaceContentFromMessageData(message->getMessage()); } else { qDebug() << "Cannot perform octree file replacement since current persist file path is not yet known"; } @@ -963,7 +963,7 @@ void OctreeServer::handleOctreeFileReplacementFromURL(QSharedPointererror(); if (networkError == QNetworkReply::NoError) { QByteArray contents = reply->readAll(); - OctreeServer::replaceContentFromMessageData(contents); + replaceContentFromMessageData(contents); } else { qDebug() << "Error downloading JSON from specified file"; }