12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- var D_RenameReplace = new C_Dialog( "D_RenameReplace",null,"hal/../drill/Dialogs/" );
-
- D_RenameReplace.F_Show = function( owner, v_sTitle, v_oListener, v_sObjectName, v_iHeight, v_iWidth)
- {
- this.m_oListener = v_oListener ? v_oListener : null;
- this.m_sObjectName = v_sObjectName ? v_sObjectName : null;
- this.m_iHeight = v_iHeight;
- this.m_iWidth = v_iWidth;
- this.m_oForm = owner;
- this.M_fnSuper_Show( owner, v_oListener, v_sTitle );
- };
|