Watch, Follow, &
Connect with Us
Public Report
Report From: Delphi-BCB/IDE/Class Completion    [ Add a report in this area ]  
Report #:  82752   Status: Closed
The published keyword is placed before the public keyword
Project:  Delphi Build #:  14.0.3615.26342
Version:    14.0 Submitted By:   Marius .
Report Type:  Minor failure / Design problem Date Reported:  3/7/2010 5:55:16 AM
Severity:    Commonly encountered problem Last Updated: 10/3/2011 6:08:42 PM
Platform:    All versions Internal Tracking #:  
Resolution: Duplicate  Resolved in Build: : 16.0.4000.35817
Duplicate of:  29732
Voting and Rating
Overall Rating: No Ratings Yet
0.00 out of 5
Total Votes: None
Description
None
Steps to Reproduce:
code completion on the following class gives

  TTest = class(TObject)
  public
    property tst: string read FTest write FTest;
  end;


  TTest = class(TObject)
  private
    FTest: string;
  published
  public
    property tst: string read FTest write FTest;
  end;

which needs manual correction..
Workarounds
None
Attachment
None
Comments

None

Server Response from: ETNACODE01