Hello,

i have an application which contains online help by using QHelpEngine. The help context is shown in a text browser.
I create the help engine by the following code
Qt Code:
  1. myHelpEngine = new QHelpEngine("file.qhc");
  2. if (!myHelpEngine->setupData())
  3. emit setError(3, 160, myHelpEngine->error());
To copy to clipboard, switch view to plain text mode 

If I run the applikation on a PC were Qt is installed everything works fine. But if run it on a PC were no Qt is installed, I got the error message "Cannot open collection file: file.qhc".

Could anybody tell me what i have to install in addition, to use QHelpEngine?