help url's are now found in the XML startup file and are not hardcoded anymore.

This commit is contained in:
nemu
2010-03-10 07:01:55 +00:00
parent f51b136df4
commit ae38aaf583
7 changed files with 123 additions and 36 deletions

View File

@@ -56,7 +56,7 @@
/**
* <p>
*/
PGetDefaultDialog::PGetDefaultDialog()
PGetDefaultDialog::PGetDefaultDialog(const QString helpUrl) : fHelpUrl(helpUrl)
{
setupUi(this);
@@ -101,7 +101,7 @@ void PGetDefaultDialog::setFileFormat(const QString &str)
*/
void PGetDefaultDialog::helpContent()
{
PHelp *help = new PHelp("https://wiki.intranet.psi.ch/MUSR/MusrFit#4_5_The_RUN_Block");
PHelp *help = new PHelp(fHelpUrl);
help->show();
}