diff options
author | Michele Calgaro <[email protected]> | 2024-01-22 15:19:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-22 15:22:11 +0900 |
commit | bfb6a86ee22664339e8922e55216d12e1a5b2008 (patch) | |
tree | 581faaa72b0d515a3e87c6d315c21efec779b9f4 /kopete/kopete/contactlist/kopetegroupviewitem.cpp | |
parent | 1329ec6abbcb7b79cd960e0ca138f16598d5f11f (diff) | |
download | tdenetwork-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.cpp | 6 |
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 { |