|
From: Robert M. <mar...@us...> - 2004-12-25 09:02:47
|
Update of /cvsroot/jvcl/dev/JVCL3/qrun In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5631/JVCL3/qrun Modified Files: JvQWizardEditorForm.pas Log Message: rename all PropertyEditor to Property and all ComponentEditor to Editor Index: JvQWizardEditorForm.pas =================================================================== RCS file: /cvsroot/jvcl/dev/JVCL3/qrun/JvQWizardEditorForm.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JvQWizardEditorForm.pas 6 Apr 2004 22:51:21 -0000 1.1 --- JvQWizardEditorForm.pas 25 Dec 2004 09:02:37 -0000 1.2 *************** *** 37,41 **** --------------------------------------------------------------------------- 01/29/2002 Initial create ! 1) Move TJvWizardActivePageProperty, TJvWizardComponentEditor class from JvWizardReg to here 2) TJvWizardPageListProperty added --- 37,41 ---- --------------------------------------------------------------------------- 01/29/2002 Initial create ! 1) Move TJvWizardActivePageProperty, TJvWizardEditor class from JvWizardReg to here 2) TJvWizardPageListProperty added *************** *** 73,77 **** // JvWizard Component Local Menu Editor ! TJvWizardComponentEditor = class(TComponentEditor) protected function GetWizard: TJvWizard; virtual; --- 73,77 ---- // JvWizard Component Local Menu Editor ! TJvWizardEditor = class(TComponentEditor) protected function GetWizard: TJvWizard; virtual; *************** *** 224,230 **** end; ! //=== TJvWizardComponentEditor =============================================== ! procedure TJvWizardComponentEditor.AddPage(Page: TJvWizardCustomPage); begin Page.Parent := Wizard; --- 224,230 ---- end; ! //=== TJvWizardEditor ======================================================== ! procedure TJvWizardEditor.AddPage(Page: TJvWizardCustomPage); begin Page.Parent := Wizard; *************** *** 235,239 **** end; ! procedure TJvWizardComponentEditor.AddInteriorPage; var Page: TJvWizardInteriorPage; --- 235,239 ---- end; ! procedure TJvWizardEditor.AddInteriorPage; var Page: TJvWizardInteriorPage; *************** *** 249,253 **** end; ! procedure TJvWizardComponentEditor.AddWelcomePage; var Page: TJvWizardWelcomePage; --- 249,253 ---- end; ! procedure TJvWizardEditor.AddWelcomePage; var Page: TJvWizardWelcomePage; *************** *** 263,267 **** end; ! procedure TJvWizardComponentEditor.ExecuteVerb(Index: Integer); begin case Index of --- 263,267 ---- end; ! procedure TJvWizardEditor.ExecuteVerb(Index: Integer); begin case Index of *************** *** 286,290 **** end; ! function TJvWizardComponentEditor.GetWizard: TJvWizard; begin if Component is TJvWizard then --- 286,290 ---- end; ! function TJvWizardEditor.GetWizard: TJvWizard; begin if Component is TJvWizard then *************** *** 294,298 **** end; ! function TJvWizardComponentEditor.GetVerb(Index: Integer): string; begin case Index of --- 294,298 ---- end; ! function TJvWizardEditor.GetVerb(Index: Integer): string; begin case Index of *************** *** 312,321 **** end; ! function TJvWizardComponentEditor.GetVerbCount: Integer; begin Result := 6; end; ! procedure TJvWizardComponentEditor.NextPage(Step: Integer); var Page: TJvWizardCustomPage; --- 312,321 ---- end; ! function TJvWizardEditor.GetVerbCount: Integer; begin Result := 6; end; ! procedure TJvWizardEditor.NextPage(Step: Integer); var Page: TJvWizardCustomPage; |