| Summary: |
PHP5 writer - implementation of interface creates wrong code |
| Product: |
[Applications] umbrello
|
Reporter: |
Ralph Janke <txwikinger> |
| Component: |
general | Assignee: |
Umbrello Development Group <umbrello-devel> |
| Status: |
RESOLVED
DUPLICATE
|
|
|
| Severity: |
normal
|
CC: |
kde
|
| Priority: |
NOR
|
|
|
| Version First Reported In: |
unspecified | |
|
| Target Milestone: |
--- | |
|
| Platform: |
unspecified | |
|
| OS: |
Linux | |
|
|
Latest Commit:
|
http://commits.kde.org/umbrello/1809908a8c2794b9fb8e01c4677ab8a2fcc1c878
|
Version Fixed/Implemented In:
|
4.13.3
|
|
Sentry Crash Report:
|
|
| |
Version: 2.2.2 (using 4.2.2 (KDE 4.2.2), Kubuntu packages) Compiler: cc OS: Linux (x86_64) release 2.6.28-11-generic When creating an interface (Iterator) and a class (test) that implements the interface, the generated code is wrong: class test extends Iterator implements Iterator { } Correctly, the class test does not extend any other class, but solely implements the interface Iterator. It should read like this: class test implements Iterator { }