~ubuntu-branches/ubuntu/vivid/lazarus/vivid

« back to all changes in this revision

Viewing changes to components/synedit/syneditmarkupspecialline.pp

  • Committer: Package Import Robot
  • Author(s): Abou Al Montacir
  • Date: 2014-05-15 23:17:51 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20140515231751-gumj9a01g0ghm7ac
Tags: 1.2.2+dfsg-1
* New upstream release with few fixes and official support of FPC 2.6.4.
  - The detailed list of changes can be found here:
  http://wiki.lazarus.freepascal.org/Lazarus_1.2_fixes_branch#Fixes_for_1.2.2_.28Merged.29

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
function TSynEditMarkupSpecialLine.RealEnabled: Boolean;
126
126
begin
127
127
  Result := Enabled and
128
 
    (Assigned(FOnSpecialLineMarkup) or Assigned(FOnSpecialLineColors));
 
128
    (Assigned(FOnSpecialLineMarkup) or Assigned(FOnSpecialLineColors) or
 
129
     HasLineHighlight
 
130
    );
129
131
end;
130
132
 
131
133
constructor TSynEditMarkupSpecialLine.Create(ASynEdit: TSynEditBase);