From 2fa46fdd982ce4817935d313dec3b6a463bb5862 Mon Sep 17 00:00:00 2001 From: "T. van der Zwan" Date: Sun, 2 Feb 2014 16:58:46 +0100 Subject: [PATCH] Fixed correct addres configuration Former-commit-id: b001df5968f009cf9686a3741170790d82eaba1f --- 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 ef9b5ab4..6e6ee9ba 100644 --- a/src/hyperion-x11/hyperion-x11.cpp +++ b/src/hyperion-x11/hyperion-x11.cpp @@ -67,7 +67,7 @@ int main(int argc, char ** argv) else { // Create the Proto-connection with hyperiond - ProtoWrapper protoWrapper("127.0.0.1:19445", argSkipReply.isSet()); + ProtoWrapper protoWrapper(argAddress.getValue(), argSkipReply.isSet()); // Connect the screen capturing to the proto processing QObject::connect(&x11Wrapper, SIGNAL(sig_screenshot(const Image &)), &protoWrapper, SLOT(process(Image)));