summaryrefslogtreecommitdiff
path: root/shell/vertical-clock.h
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2014-03-05 13:08:13 +0100
committerJonny Lamb <jonny.lamb@collabora.co.uk>2014-03-05 13:08:13 +0100
commit98726a2757f048cc510b186969883816725a5708 (patch)
tree65e756cf1e5e80e100a408dfe6e9f7b152030ee5 /shell/vertical-clock.h
parent0fdc7d88d3b38972b8d2242c981a6e09da4647a3 (diff)
downloadgraynard-98726a2757f048cc510b186969883816725a5708.tar.gz
graynard-98726a2757f048cc510b186969883816725a5708.zip
shell: rename widgets to reflect project rename
Diffstat (limited to 'shell/vertical-clock.h')
-rw-r--r--shell/vertical-clock.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/shell/vertical-clock.h b/shell/vertical-clock.h
index c6c1465..6ad6221 100644
--- a/shell/vertical-clock.h
+++ b/shell/vertical-clock.h
@@ -4,38 +4,38 @@
* Author: Jonny Lamb <jonny.lamb@collabora.co.uk>
*/
-#ifndef __WESTON_GTK_VERTICAL_CLOCK_H__
-#define __WESTON_GTK_VERTICAL_CLOCK_H__
+#ifndef __MAYNARD_VERTICAL_CLOCK_H__
+#define __MAYNARD_VERTICAL_CLOCK_H__
#include <gtk/gtk.h>
-#define WESTON_GTK_VERTICAL_CLOCK_TYPE (weston_gtk_vertical_clock_get_type ())
-#define WESTON_GTK_VERTICAL_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), WESTON_GTK_VERTICAL_CLOCK_TYPE, WestonGtkVerticalClock))
-#define WESTON_GTK_VERTICAL_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), WESTON_GTK_VERTICAL_CLOCK_TYPE, WestonGtkVerticalClockClass))
-#define WESTON_GTK_IS_VERTICAL_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WESTON_GTK_VERTICAL_CLOCK_TYPE))
-#define WESTON_GTK_IS_VERTICAL_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), WESTON_GTK_VERTICAL_CLOCK_TYPE))
-#define WESTON_GTK_VERTICAL_CLOCK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), WESTON_GTK_VERTICAL_CLOCK_TYPE, WestonGtkVerticalClockClass))
+#define MAYNARD_VERTICAL_CLOCK_TYPE (maynard_vertical_clock_get_type ())
+#define MAYNARD_VERTICAL_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAYNARD_VERTICAL_CLOCK_TYPE, MaynardVerticalClock))
+#define MAYNARD_VERTICAL_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MAYNARD_VERTICAL_CLOCK_TYPE, MaynardVerticalClockClass))
+#define MAYNARD_IS_VERTICAL_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAYNARD_VERTICAL_CLOCK_TYPE))
+#define MAYNARD_IS_VERTICAL_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MAYNARD_VERTICAL_CLOCK_TYPE))
+#define MAYNARD_VERTICAL_CLOCK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MAYNARD_VERTICAL_CLOCK_TYPE, MaynardVerticalClockClass))
-typedef struct WestonGtkVerticalClock WestonGtkVerticalClock;
-typedef struct WestonGtkVerticalClockClass WestonGtkVerticalClockClass;
-typedef struct WestonGtkVerticalClockPrivate WestonGtkVerticalClockPrivate;
+typedef struct MaynardVerticalClock MaynardVerticalClock;
+typedef struct MaynardVerticalClockClass MaynardVerticalClockClass;
+typedef struct MaynardVerticalClockPrivate MaynardVerticalClockPrivate;
-struct WestonGtkVerticalClock
+struct MaynardVerticalClock
{
GtkBox parent;
- WestonGtkVerticalClockPrivate *priv;
+ MaynardVerticalClockPrivate *priv;
};
-struct WestonGtkVerticalClockClass
+struct MaynardVerticalClockClass
{
GtkBoxClass parent_class;
};
-#define WESTON_GTK_VERTICAL_CLOCK_WIDTH 25
+#define MAYNARD_VERTICAL_CLOCK_WIDTH 25
-GType weston_gtk_vertical_clock_get_type (void) G_GNUC_CONST;
+GType maynard_vertical_clock_get_type (void) G_GNUC_CONST;
-GtkWidget * weston_gtk_vertical_clock_new (void);
+GtkWidget * maynard_vertical_clock_new (void);
-#endif /* __WESTON_GTK_VERTICAL_CLOCK_H__ */
+#endif /* __MAYNARD_VERTICAL_CLOCK_H__ */