Actions
Bug #13703
openError on WToolbar.h
Start date:
04/11/2025
Due date:
% Done:
100%
Estimated time:
Description
I just download and try to compile with the version 4.11.4, just report that I found an error on:
WToolBar.h
Line: 75
addWidget(std::unique_ptr(std::move(widget), alignmentFlag));
Should be (alignmeentFlag as parameter of addWidget, not of unique_ptr<>):
addWidget(std::unique_ptr(std::move(widget)), alignmentFlag);
Updated by Matthias Van Ceulebroeck 22 days ago
- Target version set to 4.12.0
Hello José,
thank you for the report. You're indeed very right, that closing bracket is placed wrong.
Updated by Matthias Van Ceulebroeck 22 days ago
- Assignee set to Matthias Van Ceulebroeck
Updated by Matthias Van Ceulebroeck 22 days ago
- Status changed from New to InProgress
Updated by Matthias Van Ceulebroeck 21 days ago
- Status changed from InProgress to Review
- Assignee changed from Matthias Van Ceulebroeck to Romain Mardulyn
Updated by Matthias Van Ceulebroeck 11 days ago
- Status changed from Review to Implemented @Emweb
- Assignee changed from Romain Mardulyn to Matthias Van Ceulebroeck
- % Done changed from 0 to 100
Updated by Matthias Van Ceulebroeck 8 days ago
- Status changed from Implemented @Emweb to Implemented @Test
Actions