Actions
Bug #13703
openError on WToolbar.h
Start date:
04/11/2025
Due date:
% Done:
0%
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 2 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 2 days ago
- Assignee set to Matthias Van Ceulebroeck
Updated by Matthias Van Ceulebroeck 2 days ago
- Status changed from New to InProgress
Updated by Matthias Van Ceulebroeck 1 day ago
- Status changed from InProgress to Review
- Assignee changed from Matthias Van Ceulebroeck to Romain Mardulyn
Actions