operators
| 134 | |
| 135 | // operators |
| 136 | UIItem *UITextItem::CopyUIItem() { |
| 137 | UITextItem *newitem = ::new UITextItem(); |
| 138 | if (newitem) { |
| 139 | *newitem = *this; |
| 140 | } |
| 141 | return newitem; |
| 142 | } |
| 143 | |
| 144 | const UITextItem &UITextItem::operator=(const UITextItem &item) { |
| 145 | if (m_Text && m_Text != (&UITextItem::dummy_str[0])) { |
no outgoing calls
no test coverage detected