summaryrefslogtreecommitdiff
path: root/shell/launcher.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2014-03-07 15:02:42 +0100
committerJonny Lamb <jonny.lamb@collabora.co.uk>2014-03-07 15:03:31 +0100
commit53f7cfc846958675377687f3e936af5712fb5331 (patch)
tree57d75a58aee5468b32243227515a72cb1f72ba10 /shell/launcher.c
parent9ae75e8d9c56710d2f2cb3d2f2ea33496d8f9c08 (diff)
downloadgraynard-53f7cfc846958675377687f3e936af5712fb5331.tar.gz
graynard-53f7cfc846958675377687f3e936af5712fb5331.zip
style: rename classes from wgs-* to maynard-*
Diffstat (limited to 'shell/launcher.c')
-rw-r--r--shell/launcher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/launcher.c b/shell/launcher.c
index ef23bde..0a6f0f7 100644
--- a/shell/launcher.c
+++ b/shell/launcher.c
@@ -166,7 +166,7 @@ app_launcher_new_from_desktop_info (MaynardLauncher *self,
/* we need an ebox to catch enter and leave events */
ebox = gtk_event_box_new ();
gtk_style_context_add_class (gtk_widget_get_style_context (ebox),
- "wgs-grid-item");
+ "maynard-grid-item");
/* we use an overlay so we can have the app icon showing but use a
* GtkRevealer to show a label of the app's name. */
@@ -192,7 +192,7 @@ app_launcher_new_from_desktop_info (MaynardLauncher *self,
/* app name */
label = gtk_label_new (g_app_info_get_display_name (G_APP_INFO (info)));
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
- gtk_style_context_add_class (gtk_widget_get_style_context (label), "wgs-grid-label");
+ gtk_style_context_add_class (gtk_widget_get_style_context (label), "maynard-grid-label");
gtk_container_add (GTK_CONTAINER (revealer), label);
/* icon button to load the app */
@@ -290,7 +290,7 @@ maynard_launcher_constructed (GObject *object)
/* make it black and slightly alpha */
gtk_style_context_add_class (
gtk_widget_get_style_context (GTK_WIDGET (self)),
- "wgs-grid");
+ "maynard-grid");
/* scroll it */
self->priv->scrolled_window = gtk_scrolled_window_new (NULL, NULL);