summaryrefslogtreecommitdiffstats
path: root/src/widget/wsingletoncontainer.h
AgeCommit message (Collapse)Author
2020-12-07merge 2.3Be
2020-11-19Pass non-trivial/large function args by referenceJan Holthuis
Fixes a bunch of `-Wclazy-function-args-by-ref` warnings. See https://github.com/KDE/clazy/blob/master/docs/checks/README-function-args-by-ref.md for details. Most of these changes are automated, using the clazy fixit by setting the `CLAZY_EXPORT_FIXES` before compilation and then running: $ mkdir /tmp/patch $ find ../src -iname "*.yaml" -exec mv {} /tmp/patch \; $ clang-apply-replacements /tmp/patch
2019-11-11Delete redundant virtual keywordsUwe Klotz
2019-11-10Add missing override to fix clang's -Winconsistent-missing-override warningsJan Holthuis
2016-05-07Switch a lot of function arguments to const references in LegacySkinParser.RJ Ryan
2016-04-25Spring cleaning: Apply clang-tidy to src/widget.RJ Ryan
Using LLVM 3.8.0: $ clang-tidy --fix --checks="*,-llvm-header-guard,-readability-implicit-bool-cast,-readability-else-after-return,-google-readability-todo" $(git ls src/widget | xargs) -- (flags to compile)
2015-02-01Singleton Widgets: code review notes.Owen Williams
Also avoid an unnecessary reparent if the widget already has the correct parent.
2015-01-18change commentsOwen Williams
2015-01-16Convert WSingletonContainer to something that can be parsed with ↵Owen Williams
parseStandardWidget
2015-01-15fix commentsOwen Williams
2015-01-15Make the SingletonMap its own classOwen Williams
2015-01-15Move SingletonWidget map into SkinContext for easier lifetime management.Owen Williams
Also address other notes.
2015-01-14missing bracketOwen Williams
2015-01-14fix commentOwen Williams
2015-01-14Finish Singleton implementationOwen Williams