diff options
| author | Ismael Asensio <[email protected]> | 2019-12-22 17:46:48 +0100 |
|---|---|---|
| committer | Ismael Asensio <[email protected]> | 2020-01-12 19:00:25 +0100 |
| commit | a8dd6998407cd27daf160c45ae77a8d0ae5cf1f7 (patch) | |
| tree | 115572f25becf8ab525d13af52bc2f2ed6748dc6 /src/kitemviews/kitemliststyleoption.cpp | |
| parent | 17e127edcd25f1fa62b1ac1940149763f88291fc (diff) | |
Get rid of -Wdeprecated-copy warning
Summary:
Remove the explicit copy constructor of `KItemListStyleOption`, since it does not
add any logic to what the implicit copy constructor does, but triggers a compiler
warning if we don't overload `operator=` too.
Test Plan:
Compiles without `-Wdeprecated-copy` warning
No behavior changes
Reviewers: elvisangelaccio, #dolphin
Reviewed By: elvisangelaccio, #dolphin
Subscribers: kfm-devel
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D26585
Diffstat (limited to 'src/kitemviews/kitemliststyleoption.cpp')
| -rw-r--r-- | src/kitemviews/kitemliststyleoption.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/kitemviews/kitemliststyleoption.cpp b/src/kitemviews/kitemliststyleoption.cpp index bcfb86064..84054aaac 100644 --- a/src/kitemviews/kitemliststyleoption.cpp +++ b/src/kitemviews/kitemliststyleoption.cpp @@ -35,21 +35,6 @@ KItemListStyleOption::KItemListStyleOption() : { } -KItemListStyleOption::KItemListStyleOption(const KItemListStyleOption& other) : - rect(other.rect), - font(other.font), - fontMetrics(other.fontMetrics), - palette(other.palette), - padding(other.padding), - horizontalMargin(other.horizontalMargin), - verticalMargin(other.verticalMargin), - iconSize(other.iconSize), - extendedSelectionRegion(other.extendedSelectionRegion), - maxTextLines(other.maxTextLines), - maxTextWidth(other.maxTextWidth) -{ -} - KItemListStyleOption::~KItemListStyleOption() { } |
