diff --git a/Lib/D11/GUISDK_D11.bpl b/Lib/D11/GUISDK_D11.bpl index a795272..648c3e9 100644 Binary files a/Lib/D11/GUISDK_D11.bpl and b/Lib/D11/GUISDK_D11.bpl differ diff --git a/Lib/D11/GUISDK_D11.dcp b/Lib/D11/GUISDK_D11.dcp index 9733179..2733f94 100644 Binary files a/Lib/D11/GUISDK_D11.dcp and b/Lib/D11/GUISDK_D11.dcp differ diff --git a/Lib/D11/GUISDK_D11.dcu b/Lib/D11/GUISDK_D11.dcu index 629573c..a964d83 100644 Binary files a/Lib/D11/GUISDK_D11.dcu and b/Lib/D11/GUISDK_D11.dcu differ diff --git a/Lib/D11/uCustomEditor.dcu b/Lib/D11/uCustomEditor.dcu index a98b329..52c31b5 100644 Binary files a/Lib/D11/uCustomEditor.dcu and b/Lib/D11/uCustomEditor.dcu differ diff --git a/Lib/D11/uCustomView.dcu b/Lib/D11/uCustomView.dcu index 21a14e0..ae2cecb 100644 Binary files a/Lib/D11/uCustomView.dcu and b/Lib/D11/uCustomView.dcu differ diff --git a/Lib/D11/uGUIBase.dcu b/Lib/D11/uGUIBase.dcu index 2ea1778..57efa85 100644 Binary files a/Lib/D11/uGUIBase.dcu and b/Lib/D11/uGUIBase.dcu differ diff --git a/Lib/D11/uGUIUtils.dcu b/Lib/D11/uGUIUtils.dcu index ea03d0f..f3837e3 100644 Binary files a/Lib/D11/uGUIUtils.dcu and b/Lib/D11/uGUIUtils.dcu differ diff --git a/Packages/GUISDK_D11.dpk b/Packages/GUISDK_D11.dpk index 3d69568..9d5f86b 100644 --- a/Packages/GUISDK_D11.dpk +++ b/Packages/GUISDK_D11.dpk @@ -32,8 +32,6 @@ requires designide, vclactnband, vclx, - ccpackD11, - cfpack_D11, xmlrtl; contains diff --git a/Packages/GUISDK_D11.dproj b/Packages/GUISDK_D11.dproj index b597933..6507884 100644 --- a/Packages/GUISDK_D11.dproj +++ b/Packages/GUISDK_D11.dproj @@ -35,50 +35,9 @@ Delphi.Personality Package - - False - True - False - - - GUI SDK para Delphi 2007 - False - False - False - - - True - False - 1 - 0 - 0 - 0 - False - False - False - False - False - 3082 - 1252 - - - - - 1.0.0.0 - - - - - - 1.0.0.0 - - - - GUISDK_D11.dpk - - +FalseTrueFalseGUI SDK para Delphi 2007FalseFalseFalseTrueFalse1000FalseFalseFalseFalseFalse308212521.0.0.01.0.0.0GUISDK_D11.dpk - + MainSource @@ -87,12 +46,495 @@ - - - - - - + + + + + + - + + diff --git a/Source/uCustomEditor.pas b/Source/uCustomEditor.pas index 81432ce..2137fdd 100644 --- a/Source/uCustomEditor.pas +++ b/Source/uCustomEditor.pas @@ -48,17 +48,12 @@ type TCustomEditorClass = class of TCustomEditor; -procedure Register; - implementation -uses - CustFrms, uGUIUtils; +{$R *.dfm} -procedure Register; -begin - RegisterCustomFormClass(TCustomEditor); -end; +uses + uGUIUtils; { ******************************** TCustomEditor ********************************* diff --git a/Source/uCustomView.pas b/Source/uCustomView.pas index 5db151e..6446c50 100644 --- a/Source/uCustomView.pas +++ b/Source/uCustomView.pas @@ -60,8 +60,6 @@ type function Nestable: Boolean; override; end; -procedure Register; - implementation {$R *.dfm} @@ -71,11 +69,6 @@ implementation uses DesignIntf, uGUIUtils, RTLConsts; -procedure Register; -begin - RegisterCustomModule(TCustomView, TCustomViewModule); -end; - { ********************************* TCustomView ********************************** }