| Summary: |
c++ methods are not imported if class is defined outside name space |
| Product: |
[Applications] umbrello
|
Reporter: |
Ralf Habacker <ralf.habacker> |
| Component: |
importer | Assignee: |
Umbrello Development Group <umbrello-devel> |
| Status: |
RESOLVED
FIXED
|
|
|
| Severity: |
normal
|
|
|
| Priority: |
NOR
|
|
|
| Version First Reported In: |
2.22.3 (KDE Applications 17.04.3) | |
|
| Target Milestone: |
--- | |
|
| Platform: |
Other | |
|
| OS: |
Linux | |
|
|
Latest Commit:
|
https://commits.kde.org/umbrello/3bf9ace74540cc73073674cb54c88976c0eb8705
|
Version Fixed/Implemented In:
|
2.23.0 (KDE Applications 17.08.0)
|
|
Sentry Crash Report:
|
|
| |
Daniele E. Domenichelli reported the following bug: The problem is that the classes are generated, but the methods are not imported for example see the difference in the classes foo and bar generated by this: --- namespace test { class foo; class bar { bar(); }; } // namespace test class test::foo { test(); }; ---