QDBusConnection: fix misleading placement of Q_DECLARE_FLAGS
Was placed under an unrelated enum. Move it to the correct one. Change-Id: I0cf1ffc678c4cffae16660acde95183d5ebcad03 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>bb10
parent
cd18e93845
commit
641de5ab50
|
|
@ -99,11 +99,12 @@ public:
|
|||
ExportChildObjects = 0x1000
|
||||
// Reserved = 0xff000000
|
||||
};
|
||||
Q_DECLARE_FLAGS(RegisterOptions, RegisterOption)
|
||||
|
||||
enum UnregisterMode {
|
||||
UnregisterNode,
|
||||
UnregisterTree
|
||||
};
|
||||
Q_DECLARE_FLAGS(RegisterOptions, RegisterOption)
|
||||
|
||||
enum VirtualObjectRegisterOption {
|
||||
SingleNode = 0x0,
|
||||
|
|
|
|||
Loading…
Reference in New Issue