┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/kitemviews/kitemliststyleoption.cpp15
-rw-r--r--src/kitemviews/kitemliststyleoption.h3
2 files changed, 0 insertions, 18 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()
{
}
diff --git a/src/kitemviews/kitemliststyleoption.h b/src/kitemviews/kitemliststyleoption.h
index 93aafac1f..381f4bbe5 100644
--- a/src/kitemviews/kitemliststyleoption.h
+++ b/src/kitemviews/kitemliststyleoption.h
@@ -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