insignificant, renamed recieverInterface to have a capital letter in class name

This commit is contained in:
2018-10-10 11:43:35 +02:00
parent 4b166b726e
commit 78bfc9d0a5
6 changed files with 30 additions and 37 deletions

View File

@ -2,7 +2,7 @@
#include "multiSlsDetector.h"
#include "sls_receiver_exceptions.h"
#include "SharedMemory.h"
#include "receiverInterface.h"
#include "ReceiverInterface.h"
#include "gitInfoLib.h"
#include "versionAPI.h"
#include "slsDetectorCommand.h"
@ -590,7 +590,7 @@ void slsDetector::initializeMembers() {
delete thisReceiver;
thisReceiver = 0;
}
thisReceiver = new receiverInterface(dataSocket);
thisReceiver = new ReceiverInterface(dataSocket);
}