fix slot name

Former-commit-id: fc2faf3b70be3b0a01cf3c72f7092c57e7c88783
This commit is contained in:
poljvd 2014-12-01 21:35:04 +01:00
parent bf7ddf5991
commit 93de656985
1 changed files with 1 additions and 1 deletions

View File

@ -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<ColorRgb> &)), &protoWrapper, SLOT(process(Image<ColorRgb>)));
QObject::connect(&x11Wrapper, SIGNAL(sig_screenshot(const Image<ColorRgb> &)), &protoWrapper, SLOT(receiveImage(Image<ColorRgb>)));
// Start the capturing
x11Wrapper.start();