mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 14:29:33 +02:00
MG: renamed designerstr.pas to objinspstrconsts.pas
git-svn-id: trunk@1422 -
This commit is contained in:
parent
c667c58895
commit
6de883b97d
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -85,6 +85,7 @@ designer/designerstr.pas svneol=native#text/pascal
|
||||
designer/filesystem.pp svneol=native#text/pascal
|
||||
designer/jitforms.pp svneol=native#text/pascal
|
||||
designer/objectinspector.pp svneol=native#text/pascal
|
||||
designer/objinspstrconsts.pas svneol=native#text/pascal
|
||||
designer/propedits.pp svneol=native#text/pascal
|
||||
designer/scalecompsdlg.pp svneol=native#text/pascal
|
||||
designer/sizecompsdlg.pp svneol=native#text/pascal
|
||||
|
28
designer/objinspstrconsts.pas
Normal file
28
designer/objinspstrconsts.pas
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
*****************************************************************************
|
||||
* *
|
||||
* See the file COPYING.modifiedLGPL, included in this distribution, *
|
||||
* for details about the copyright. *
|
||||
* *
|
||||
* This program is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
}
|
||||
unit ObjInspStrConsts;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
resourcestring
|
||||
// component editors commands
|
||||
oiscAdd = '&Add';
|
||||
oiscDelete = '&Delete';
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -41,7 +41,8 @@ interface
|
||||
|
||||
uses
|
||||
Classes, TypInfo, SysUtils, Forms, Controls, GraphType, Graphics, StdCtrls,
|
||||
Buttons, ComCtrls, Menus, LCLType, ExtCtrls, LCLLinux;
|
||||
Buttons, ComCtrls, Menus, LCLType, ExtCtrls, LCLLinux, Dialogs, ColumnDlg,
|
||||
ObjInspStrConsts;
|
||||
|
||||
const
|
||||
MaxIdentLength: Byte = 63;
|
||||
@ -1076,7 +1077,6 @@ type
|
||||
|
||||
implementation
|
||||
|
||||
uses Dialogs, ColumnDlg, DesignerStr;
|
||||
|
||||
const
|
||||
ListPropertyEditors: TList = nil;
|
||||
@ -2566,7 +2566,7 @@ begin
|
||||
AddButton:= TSpeedButton.Create(Self);
|
||||
With AddButton do begin
|
||||
Parent:= ButtonPanel;
|
||||
Caption:= liscAdd;
|
||||
Caption:= oiscAdd;
|
||||
OnClick:= @AddClick;
|
||||
SetBounds(6, 6, 43, 27);
|
||||
end;
|
||||
@ -2574,7 +2574,7 @@ begin
|
||||
DeleteButton := TSpeedButton.Create(Self);
|
||||
With DeleteButton do begin
|
||||
Parent:= ButtonPanel;
|
||||
Caption:= liscDelete;
|
||||
Caption:= oiscDelete;
|
||||
OnClick:= @DeleteCLICK;
|
||||
SetBounds(56, 6, 43, 27);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user