mu-message-file/-part: small fixes
Handle is_new in all cases. Use starts_with where applicable (C++20) Update unit-tests
This commit is contained in:
@ -47,6 +47,13 @@ public:
|
||||
*/
|
||||
MessagePart(const MessagePart& other);
|
||||
|
||||
/**
|
||||
* Move CTOR
|
||||
*
|
||||
* @param other
|
||||
*/
|
||||
MessagePart(MessagePart&& other) noexcept;
|
||||
|
||||
/**
|
||||
* DTOR
|
||||
*
|
||||
@ -159,7 +166,7 @@ public:
|
||||
|
||||
struct Private;
|
||||
private:
|
||||
const std::unique_ptr<MimeObject> mime_obj;
|
||||
std::unique_ptr<MimeObject> mime_obj;
|
||||
};
|
||||
|
||||
} // namespace Mu
|
||||
|
||||
Reference in New Issue
Block a user