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
This commit is contained in:
Ismael Asensio 2019-12-22 17:46:48 +01:00
parent 17e127edcd
commit a8dd699840
2 changed files with 0 additions and 18 deletions

View file

@ -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()
{
}

View file

@ -31,7 +31,6 @@ class DOLPHIN_EXPORT KItemListStyleOption
{
public:
KItemListStyleOption();
KItemListStyleOption(const KItemListStyleOption& other);
virtual ~KItemListStyleOption();
QRect rect;
@ -48,8 +47,6 @@ public:
bool operator==(const KItemListStyleOption& other) const;
bool operator!=(const KItemListStyleOption& other) const;
};
#endif