mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Bugfix: LLVM compiler warnings
This commit is contained in:
@ -45,6 +45,15 @@ enum ObjectEditorAttributeType
|
||||
|
||||
struct PDFObjectEditorModelAttributeEnumItem
|
||||
{
|
||||
PDFObjectEditorModelAttributeEnumItem() = default;
|
||||
PDFObjectEditorModelAttributeEnumItem(QString name, uint32_t flags, PDFObject value) :
|
||||
name(qMove(name)),
|
||||
flags(flags),
|
||||
value(qMove(value))
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
QString name;
|
||||
uint32_t flags = 0;
|
||||
PDFObject value;
|
||||
|
Reference in New Issue
Block a user