Salome5x : fix for bug IPAL13068 : There is no help page for "Hypothesis Construction" dlg for "Netgen 1D-2D-3D" hypothesis.

This commit is contained in:
mkr 2008-07-01 05:23:04 +00:00
parent d282e89310
commit 23f07d64cc
2 changed files with 7 additions and 1 deletions

View File

@ -365,3 +365,8 @@ QString NETGENPluginGUI_HypothesisCreator::type() const
{
return tr( QString( "NETGEN_%1_HYPOTHESIS" ).arg(myIs2D?QString("2D"):QString("3D")).toLatin1().data() );
}
QString NETGENPluginGUI_HypothesisCreator::helpPage() const
{
return "netgen_2d_3d_hypo_page.html";
}

View File

@ -64,7 +64,8 @@ public:
NETGENPluginGUI_HypothesisCreator( const QString& );
virtual ~NETGENPluginGUI_HypothesisCreator();
virtual bool checkParams() const;
virtual bool checkParams() const;
virtual QString helpPage() const;
protected:
virtual QFrame* buildFrame ();