summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/contactlist/kopetegroupviewitem.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-22 15:19:33 +0900
committerMichele Calgaro <[email protected]>2024-01-22 15:22:11 +0900
commitbfb6a86ee22664339e8922e55216d12e1a5b2008 (patch)
tree581faaa72b0d515a3e87c6d315c21efec779b9f4 /kopete/kopete/contactlist/kopetegroupviewitem.cpp
parent1329ec6abbcb7b79cd960e0ca138f16598d5f11f (diff)
downloadtdenetwork-bfb6a86ee22664339e8922e55216d12e1a5b2008.tar.gz
tdenetwork-bfb6a86ee22664339e8922e55216d12e1a5b2008.zip
Replace auto_ptr
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kopete/kopete/contactlist/kopetegroupviewitem.cpp')
-rw-r--r--kopete/kopete/contactlist/kopetegroupviewitem.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/kopete/kopete/contactlist/kopetegroupviewitem.cpp b/kopete/kopete/contactlist/kopetegroupviewitem.cpp
index 55f4165f..c08dfa01 100644
--- a/kopete/kopete/contactlist/kopetegroupviewitem.cpp
+++ b/kopete/kopete/contactlist/kopetegroupviewitem.cpp
@@ -38,11 +38,15 @@
class KopeteGroupViewItem::Private
{
public:
+ Private() {}
+ Private(Private const &) = delete;
+ Private& operator=(Private const &) = delete;
+
Kopete::UI::ListView::GroupBoxComponent *hbox;
Kopete::UI::ListView::ImageComponent *image;
Kopete::UI::ListView::TextComponent *name;
Kopete::UI::ListView::TextComponent *count;
- std::auto_ptr<Kopete::UI::ListView::ToolTipSource> toolTipSource;
+ std::unique_ptr<Kopete::UI::ListView::ToolTipSource> toolTipSource;
};
namespace Kopete {