mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 06:57:54 +02:00
LCL: undo the renaming of TEditButton into TButtonEdit.
TEditButton now has the new implementation of previously introduced TButtonEdit component. git-svn-id: trunk@44664 -
This commit is contained in:
parent
2f637d4295
commit
3c46241a71
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -5578,7 +5578,6 @@ images/components/tbevel.png -text svneol=unset#image/png
|
||||
images/components/tbitbtn.png -text svneol=unset#image/png
|
||||
images/components/tbufdataset.png -text svneol=unset#image/png
|
||||
images/components/tbutton.png -text svneol=unset#image/png
|
||||
images/components/tbuttonedit.png -text svneol=unset#image/png
|
||||
images/components/tbuttonpanel.png -text svneol=unset#image/png
|
||||
images/components/tcalcedit.png -text svneol=unset#image/png
|
||||
images/components/tcalculatordialog.png -text svneol=unset#image/png
|
||||
@ -6027,7 +6026,6 @@ lcl/arrow.pp svneol=native#text/pascal
|
||||
lcl/asyncprocess.pp svneol=native#text/plain
|
||||
lcl/barchart.pp svneol=native#text/pascal
|
||||
lcl/btn_icons.res -text
|
||||
lcl/buttonedit.pas svneol=native#text/pascal
|
||||
lcl/buttonpanel.pas svneol=native#text/pascal
|
||||
lcl/buttons.pp svneol=native#text/pascal
|
||||
lcl/calendar.pp svneol=native#text/pascal
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 274 B |
Binary file not shown.
@ -43,7 +43,6 @@ components/tdirectoryedit.png
|
||||
components/tdrawgrid.png
|
||||
components/tedit.png
|
||||
components/teditbutton.png
|
||||
components/tbuttonedit.png
|
||||
components/teventlog.png
|
||||
components/tfilelistbox.png
|
||||
components/tfilenameedit.png
|
||||
|
@ -9,32 +9,31 @@ interface
|
||||
uses
|
||||
BarChart, CheckLst, Clipbrd, ColorBox, ComCtrls, Controls, CustomTimer,
|
||||
DBActns, DbCtrls, DBGrids, DefaultTranslator, Dialogs, DynamicArray,
|
||||
DynHashArray, DynQueue, EditBtn, ExtCtrls, ExtDlgs, ExtendedStrings,
|
||||
extgraphics, FileCtrl, Forms, FPCAdds, Graphics, GraphMath, GraphType,
|
||||
GraphUtil, Grids, HelpIntfs, IcnsTypes, ImageListCache, ImgList,
|
||||
IniPropStorage, InterfaceBase, IntfGraphics, LazHelpHTML, LazHelpIntf,
|
||||
LazLinkedList, LCLClasses, LCLIntf, LCLMemManager, LCLMessageGlue, LCLProc,
|
||||
LCLResCache, LCLStrConsts, LCLType, Menus, LCLUnicodeData, LCLVersion,
|
||||
LMessages, LResources, maps, MaskEdit, PairSplitter, PopupNotifier,
|
||||
PostScriptCanvas, PostScriptPrinter, postscriptunicode, Printers,
|
||||
PropertyStorage, RubberBand, ShellCtrls, Spin, StdActns, StdCtrls,
|
||||
StringHashList, TextStrings, Themes, TmSchema, Toolwin, Translations,
|
||||
UTrace, XMLPropStorage, Messages, WSButtons, WSCalendar, WSCheckLst,
|
||||
WSComCtrls, WSControls, WSDesigner, WSDialogs, WSExtCtrls, WSExtDlgs,
|
||||
WSFactory, WSForms, WSGrids, WSImgList, WSLCLClasses, WSMenus,
|
||||
WSPairSplitter, WSProc, WSReferences, WSSpin, WSStdCtrls, WSToolwin,
|
||||
ActnList, AsyncProcess, ButtonPanel, Buttons, Calendar, RegisterLCL,
|
||||
ValEdit, lazcanvas, lazdialogs, lazregions, customdrawn_common,
|
||||
customdrawncontrols, customdrawndrawers, lazdeviceapis, LDockTree,
|
||||
LazFreeTypeIntfDrawer, customdrawn_winxp, customdrawn_android, Arrow,
|
||||
ButtonEdit, LazarusPackageIntf;
|
||||
DynHashArray, DynQueue, ExtCtrls, ExtDlgs, ExtendedStrings, extgraphics,
|
||||
FileCtrl, Forms, FPCAdds, Graphics, GraphMath, GraphType, GraphUtil, Grids,
|
||||
HelpIntfs, IcnsTypes, ImageListCache, ImgList, IniPropStorage,
|
||||
InterfaceBase, IntfGraphics, LazHelpHTML, LazHelpIntf, LazLinkedList,
|
||||
LCLClasses, LCLIntf, LCLMemManager, LCLMessageGlue, LCLProc, LCLResCache,
|
||||
LCLStrConsts, LCLType, Menus, LCLUnicodeData, LCLVersion, LMessages,
|
||||
LResources, maps, MaskEdit, PairSplitter, PopupNotifier, PostScriptCanvas,
|
||||
PostScriptPrinter, postscriptunicode, Printers, PropertyStorage, RubberBand,
|
||||
ShellCtrls, Spin, StdActns, StdCtrls, StringHashList, TextStrings, Themes,
|
||||
TmSchema, Toolwin, Translations, UTrace, XMLPropStorage, Messages,
|
||||
WSButtons, WSCalendar, WSCheckLst, WSComCtrls, WSControls, WSDesigner,
|
||||
WSDialogs, WSExtCtrls, WSExtDlgs, WSFactory, WSForms, WSGrids, WSImgList,
|
||||
WSLCLClasses, WSMenus, WSPairSplitter, WSProc, WSReferences, WSSpin,
|
||||
WSStdCtrls, WSToolwin, ActnList, AsyncProcess, ButtonPanel, Buttons,
|
||||
Calendar, RegisterLCL, ValEdit, lazcanvas, lazdialogs, lazregions,
|
||||
customdrawn_common, customdrawncontrols, customdrawndrawers, lazdeviceapis,
|
||||
LDockTree, LazFreeTypeIntfDrawer, customdrawn_winxp, customdrawn_android,
|
||||
Arrow, EditBtn, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterUnit('RegisterLCL', @RegisterLCL.Register);
|
||||
RegisterUnit('ButtonEdit', @ButtonEdit.Register);
|
||||
RegisterUnit('EditBtn', @EditBtn.Register);
|
||||
end;
|
||||
|
||||
initialization
|
||||
|
2273
lcl/buttonedit.pas
2273
lcl/buttonedit.pas
File diff suppressed because it is too large
Load Diff
1215
lcl/editbtn.pas
1215
lcl/editbtn.pas
File diff suppressed because it is too large
Load Diff
778
lcl/lclbase.lpk
778
lcl/lclbase.lpk
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,7 @@ interface
|
||||
uses
|
||||
LazarusPackageIntf, Menus, Buttons, StdCtrls, ExtCtrls, ComCtrls, MaskEdit,
|
||||
CheckLst, Forms, Grids, Controls, Dialogs, Spin, Arrow, Calendar,
|
||||
PairSplitter, ExtDlgs, StdActns, DbCtrls, DBGrids, DBActns, EditBtn, ButtonEdit,
|
||||
PairSplitter, ExtDlgs, StdActns, DbCtrls, DBGrids, DBActns, EditBtn,
|
||||
ActnList, FileCtrl, Graphics, XMLPropStorage, IniPropStorage, BarChart,
|
||||
ColorBox, ButtonPanel, LResources, LazHelpHTML, PopupNotifier, AsyncProcess,
|
||||
UTF8Process, ShellCtrls, ValEdit;
|
||||
@ -61,7 +61,6 @@ begin
|
||||
RegisterUnit('UTF8Process', @UTF8Process.Register);
|
||||
RegisterUnit('ShellCtrls', @ShellCtrls.Register);
|
||||
RegisterUnit('ValEdit', @ValEdit.Register);
|
||||
RegisterUnit('ButtonEdit',@ButtonEdit.Register);
|
||||
end;
|
||||
|
||||
procedure RegisterLCLBase;
|
||||
|
Loading…
Reference in New Issue
Block a user