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
Marc Mutz 2015-07-08 01:08:23 +02:00
parent cd18e93845
commit 641de5ab50
1 changed files with 2 additions and 1 deletions

View File

@ -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,