summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-01-28 17:36:33 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-01-29 19:28:34 +0000
commit0b2293f16df6259d2f2aab1db1fc126c2edae59e (patch)
treef284178ed89e37c85043c41f2b256eb4e89f4792
parent775c27341c109cc4067df733ceec6c7728e9c6dd (diff)
McpParameterFlags, McpAttributeFlags: move to the right header
-rw-r--r--mission-control-plugins/account-storage.h10
-rw-r--r--mission-control-plugins/mission-control-plugins.h8
2 files changed, 10 insertions, 8 deletions
diff --git a/mission-control-plugins/account-storage.h b/mission-control-plugins/account-storage.h
index 356642f6..fd6daee1 100644
--- a/mission-control-plugins/account-storage.h
+++ b/mission-control-plugins/account-storage.h
@@ -31,6 +31,16 @@ G_BEGIN_DECLS
#define MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_DEFAULT 0
#define MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_NORMAL 100
+typedef enum /*< flags >*/
+{
+ MCP_PARAMETER_FLAG_NONE = 0
+} McpParameterFlags;
+
+typedef enum /*< flags >*/
+{
+ MCP_ATTRIBUTE_FLAG_NONE = 0
+} McpAttributeFlags;
+
typedef enum {
MCP_ACCOUNT_STORAGE_SET_RESULT_FAILED = 0,
MCP_ACCOUNT_STORAGE_SET_RESULT_CHANGED,
diff --git a/mission-control-plugins/mission-control-plugins.h b/mission-control-plugins/mission-control-plugins.h
index aa846f78..186da91d 100644
--- a/mission-control-plugins/mission-control-plugins.h
+++ b/mission-control-plugins/mission-control-plugins.h
@@ -27,14 +27,6 @@
#define MCP_API_VERSION_5_18 (518)
-typedef enum {
- MCP_PARAMETER_FLAG_NONE = 0,
-} McpParameterFlags;
-
-typedef enum {
- MCP_ATTRIBUTE_FLAG_NONE = 0
-} McpAttributeFlags;
-
#define _MCP_IN_MISSION_CONTROL_PLUGINS_H
#include <mission-control-plugins/account.h>
#include <mission-control-plugins/account-storage.h>