MG: renamed designerstr.pas to objinspstrconsts.pas

git-svn-id: trunk@1422 -
This commit is contained in:
lazarus 2002-02-09 02:30:46 +00:00
parent c667c58895
commit 6de883b97d
3 changed files with 33 additions and 4 deletions

1
.gitattributes vendored
View File

@ -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

View 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.

View File

@ -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;