Search found 1 match

by lolo@nice
Sat Jan 17, 2009 4:56 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Autocomplete problem with php classes
Replies: 1
Views: 1454

Autocomplete problem with php classes

Hi,

I'm trying the 9.4.0.102 version.

I have this code :

Code: Select all

class c1 {
  function f1() {
  }
}

class c2 extends c1 {
  function f2() {
  }
}
When I instantiate c1 the autocomplete wroks fine, but when I instantitate c2, it just find f2().