This file is indexed.

/usr/lib/lazarus/0.9.30.4/converter/replacefuncsunit.lfm is in lazarus-src-0.9.30.4 0.9.30.4-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
object ReplaceFuncsForm: TReplaceFuncsForm
  Left = 374
  Height = 626
  Top = 49
  Width = 928
  Caption = 'Functions to replace'
  ClientHeight = 626
  ClientWidth = 928
  OnCreate = FormCreate
  Position = poScreenCenter
  LCLVersion = '0.9.29'
  object ButtonPanel: TButtonPanel
    Left = 6
    Height = 34
    Top = 586
    Width = 916
    OKButton.Name = 'OKButton'
    OKButton.Caption = '&OK'
    OKButton.OnClick = OKButtonClick
    HelpButton.Name = 'HelpButton'
    HelpButton.Caption = '&Help'
    CloseButton.Name = 'CloseButton'
    CloseButton.Caption = '&Close'
    CloseButton.Enabled = False
    CancelButton.Name = 'CancelButton'
    CancelButton.Caption = 'Cancel'
    TabOrder = 0
    ShowButtons = [pbOK, pbCancel, pbHelp]
  end
  object Grid: TStringGrid
    AnchorSideLeft.Control = Splitter1
    AnchorSideLeft.Side = asrBottom
    AnchorSideBottom.Control = ButtonPanel
    Left = 162
    Height = 580
    Top = 0
    Width = 766
    Anchors = [akTop, akLeft, akRight, akBottom]
    Columns = <    
      item
        Title.Caption = 'Category'
        Width = 100
      end    
      item
        Title.Caption = 'Delphi Function'
        Width = 150
      end    
      item
        Title.Caption = 'Replacement'
        Width = 310
      end    
      item
        Title.Caption = 'Package'
        Width = 90
      end    
      item
        Title.Caption = 'Unit'
        Width = 90
      end>
    FixedCols = 0
    Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goEditing, goSmoothScroll]
    PopupMenu = PopupMenu1
    RowCount = 2
    TabOrder = 1
    OnPrepareCanvas = GridPrepareCanvas
    ColWidths = (
      100
      150
      310
      90
      90
    )
  end
  object CategoryListBox: TCheckListBox
    AnchorSideTop.Control = CategoriesLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Splitter1
    AnchorSideBottom.Control = ButtonPanel
    Left = 0
    Height = 553
    Top = 27
    Width = 157
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Top = 5
    ItemHeight = 0
    OnClickCheck = CategoryListBoxClickCheck
    TabOrder = 2
  end
  object Splitter1: TSplitter
    Left = 157
    Height = 270
    Top = 0
    Width = 5
    Align = alNone
  end
  object CategoriesLabel: TLabel
    Left = 6
    Height = 14
    Top = 8
    Width = 110
    BorderSpacing.Right = 6
    Caption = 'Categories to convert:'
    ParentColor = False
    ParentFont = False
  end
  object PopupMenu1: TPopupMenu
    OnPopup = PopupMenu1Popup
    left = 248
    top = 152
    object InsertRow1: TMenuItem
      Caption = 'Insert Row'
      OnClick = InsertRow1Click
    end
    object DeleteRow1: TMenuItem
      Caption = 'Delete Row'
      OnClick = DeleteRow1Click
    end
  end
end