aboutsummaryrefslogtreecommitdiff
path: root/examples/chaining
diff options
context:
space:
mode:
Diffstat (limited to 'examples/chaining')
-rw-r--r--examples/chaining/INSTALL.txt29
-rw-r--r--examples/chaining/chainingexampleapp1/imageviewer.cpp2
2 files changed, 1 insertions, 30 deletions
diff --git a/examples/chaining/INSTALL.txt b/examples/chaining/INSTALL.txt
deleted file mode 100644
index 43efd0b2..00000000
--- a/examples/chaining/INSTALL.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-# here are some commands you can use/adapt to help you get this example installed on the device.
-
-mkdir install
-cp chainingexampleapp?/*chainingexampleapp?{,.desktop,.service} install
-cp chainingexampleinterface/libchainingexampleinterface.so.1.0.0 install
-tar -zcf install.tar.gz install
-scp install.tar.gz root@192.168.2.15:/home/user
-ssh 192.168.2.15 -l root
-cd /home/user
-tar -zxf install.tar.gz
-cp install/*.desktop /usr/share/applications/
-cp install/*.service /usr/share/dbus-1/services
-cp install/chainingexampleapp1 /usr/bin/chainingexampleapp1.exe
-cp install/chainingexampleapp2 /usr/bin/chainingexampleapp2.exe
-cp install/libchainingexampleinterface.so.1.0.0 /usr/lib
-ln -s /usr/lib/libchainingexampleinterface.so.1.0.0 /usr/lib/libchainingexampleinterface.so.1.0
-ln -s /usr/lib/libchainingexampleinterface.so.1.0.0 /usr/lib/libchainingexampleinterface.so.1
-ln -s /usr/lib/libchainingexampleinterface.so.1.0.0 /usr/lib/libchainingexampleinterface.so
-cat > /usr/bin/chainingexampleapp1 <<EOF
-#!/bin/sh
-
-/usr/bin/chainingexampleapp1.exe $* > /tmp/chainingexampleapp1.out 2>&1
-EOF
-cat > /usr/bin/chainingexampleapp2 <<EOF
-#!/bin/sh
-
-/usr/bin/chainingexampleapp2.exe $* > /tmp/chainingexampleapp2.out 2>&1
-EOF
-chmod +x /usr/bin/chainingexampleapp?
diff --git a/examples/chaining/chainingexampleapp1/imageviewer.cpp b/examples/chaining/chainingexampleapp1/imageviewer.cpp
index 2442baae..4750d2b1 100644
--- a/examples/chaining/chainingexampleapp1/imageviewer.cpp
+++ b/examples/chaining/chainingexampleapp1/imageviewer.cpp
@@ -23,7 +23,7 @@ void ImageViewer::showImage()
list << imageFilename;
if ( chainingExampleInterface->isValid() ) {
- chainingExampleInterface->showImage( imageFilename, list );
+ chainingExampleInterface->showImage( imageFilename, list, "title set by app1" );
} else {
qDebug() << "chainingExampleInterface not valid : " << chainingExampleInterface;
}