diff options
author | Ted Gould <ted@canonical.com> | 2009-01-29 11:17:11 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-29 11:17:11 -0600 |
commit | 759d62b0a1062dcf53289b42f30a8374ca6e9a33 (patch) | |
tree | 32dd80aa408252f5c89642935e6a4547c2c39949 /libindicate/server.h | |
parent | c0a32384fac2c236dca7bb5681e3584bc469d596 (diff) | |
download | libayatana-indicator-759d62b0a1062dcf53289b42f30a8374ca6e9a33.tar.gz libayatana-indicator-759d62b0a1062dcf53289b42f30a8374ca6e9a33.tar.bz2 libayatana-indicator-759d62b0a1062dcf53289b42f30a8374ca6e9a33.zip |
Making all of the server values move into a private section like all the others. Generally a good thing and good clean up
Diffstat (limited to 'libindicate/server.h')
-rw-r--r-- | libindicate/server.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/libindicate/server.h b/libindicate/server.h index bc4522d..482fb9a 100644 --- a/libindicate/server.h +++ b/libindicate/server.h @@ -5,6 +5,8 @@ #include <glib.h> #include <glib-object.h> +#include "indicator.h" + G_BEGIN_DECLS /* Boilerplate */ @@ -16,19 +18,8 @@ G_BEGIN_DECLS #define INDICATE_SERVER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_SERVER, IndicateServerClass)) typedef struct _IndicateServer IndicateServer; - -#include "indicator.h" - struct _IndicateServer { GObject parent; - - gchar * path; - GSList * indicators; - gboolean visible; - guint current_id; - - // TODO: Should have a more robust way to track this, but this'll work for now - guint num_hidden; }; typedef struct _IndicateServerClass IndicateServerClass; |