From 93de6569855179523f5608b4eaae84393ada6db9 Mon Sep 17 00:00:00 2001 From: poljvd Date: Mon, 1 Dec 2014 21:35:04 +0100 Subject: [PATCH] fix slot name Former-commit-id: fc2faf3b70be3b0a01cf3c72f7092c57e7c88783 --- src/hyperion-x11/hyperion-x11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyperion-x11/hyperion-x11.cpp b/src/hyperion-x11/hyperion-x11.cpp index 8d354378..c473b7ed 100644 --- a/src/hyperion-x11/hyperion-x11.cpp +++ b/src/hyperion-x11/hyperion-x11.cpp @@ -73,7 +73,7 @@ int main(int argc, char ** argv) ProtoConnectionWrapper protoWrapper(argAddress.getValue(), argPriority.getValue(), 1000, argSkipReply.isSet()); // Connect the screen capturing to the proto processing - QObject::connect(&x11Wrapper, SIGNAL(sig_screenshot(const Image &)), &protoWrapper, SLOT(process(Image))); + QObject::connect(&x11Wrapper, SIGNAL(sig_screenshot(const Image &)), &protoWrapper, SLOT(receiveImage(Image))); // Start the capturing x11Wrapper.start();