comparison Framework/Deprecated/Widgets/LayoutWidget.h @ 1299:c38c89684d83 broker

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 17:21:24 +0100
parents 7ec8fea061b9
children 257f2c9a02ac
comparison
equal deleted inserted replaced
1297:6ab03e429f06 1299:c38c89684d83
36 36
37 std::vector<ChildWidget*> children_; 37 std::vector<ChildWidget*> children_;
38 bool isHorizontal_; 38 bool isHorizontal_;
39 unsigned int width_; 39 unsigned int width_;
40 unsigned int height_; 40 unsigned int height_;
41 std::auto_ptr<IMouseTracker> mouseTracker_; 41 std::unique_ptr<IMouseTracker> mouseTracker_;
42 unsigned int paddingLeft_; 42 unsigned int paddingLeft_;
43 unsigned int paddingTop_; 43 unsigned int paddingTop_;
44 unsigned int paddingRight_; 44 unsigned int paddingRight_;
45 unsigned int paddingBottom_; 45 unsigned int paddingBottom_;
46 unsigned int paddingInternal_; 46 unsigned int paddingInternal_;