It will be a lot easier if somebody else whp use pclinuxos can try this app to try to figure out where the error is coming from.
From looking at it, it seem this application is shipping with its own qt libraries and these libraries are not self sufficient and they go and look for qt system libraries to satisfy their dependencies and then they complain when they find qt system libraries that are newer than themselves.
Possible solution are:
1. Remove all those qt libraries from that folder forcing the application to use system qt libraries
2. Have your own qt version 4.7.2 and then have this application look for additional qt libraries from them.
3. Wait for the application to be updated to support qt version 4.7.3
I assume most distro that use qt version 4.7.3 will have the same problem you are having.
when you are in that folder, open the terminal and then type these two commands and give their output here. Put the output in the "code" tags for easy readability.
export LD_LIBRARY_PATH=`pwd`
ldd *
Hi, thanks for your answer.
Yes, I found the problem, and solution, but not the time to post it

If I delete qtlibs applications works. The problem, was, changing the envvars, the application used his own libs, but Oxygen uses dynamicaly QTDBus, and this was the "incompatible versions".
For the moment, deleting qtlibs inside this app, all works fine, but it's suppose, if a qtdbus lib with the same version, is placed inside this dir, it should work.
Thanks to all.