diff options
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 { |