QSignalMapper is obsolete and code with lambdas is shorter and clearer.
Details
Details
- Reviewers
cullmann - Group Reviewers
Kate - Commits
- R40:e261f1ff0488: Use lambdas instead of QSignalMapper
Diff Detail
Diff Detail
- Repository
- R40 Kate
- Branch
- master
- Lint
No Linters Available - Unit
No Unit Test Coverage - Build Status
Buildable 2527 Build 2545: arc lint + arc unit
addons/close-except-like/close_except_plugin.h | ||
---|---|---|
81 | Make it lambda too. |
addons/close-except-like/close_except_plugin.h | ||
---|---|---|
81 | Why? |
addons/close-except-like/close_except_plugin.h | ||
---|---|---|
81 | The parameter of appendActionsFrom() still needs a type. It doesn't seem better if the type will be a type for lambda. |
addons/close-except-like/close_except_plugin.h | ||
---|---|---|
81 | std::function<void(const QString &)> it's a type, function that returns noting and get 1 parameter. |
addons/close-except-like/close_except_plugin.h | ||
---|---|---|
81 | Why is it better than CloseFunction type? |