diff options
author | Xan Lopez <xan@igalia.com> | 2011-12-12 05:29:26 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-12 05:29:26 +0800 |
commit | 41b6a04b3e147adebfad65b634f4f54a15328064 (patch) | |
tree | b47d70d2d2b68a02575332f2c9d5240f815f984e | |
parent | d53300503bb6613c00a7124d429aa9250fea74cd (diff) | |
download | gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.tar gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.tar.gz gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.tar.bz2 gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.tar.lz gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.tar.xz gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.tar.zst gsoc2013-epiphany-41b6a04b3e147adebfad65b634f4f54a15328064.zip |
ephy-shell: fix weird spacing in LOG messages
-rw-r--r-- | src/ephy-shell.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index f454acc84..e1645cf2c 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -500,19 +500,19 @@ ephy_shell_dispose (GObject *object) if (shell->priv->extensions_manager != NULL) { LOG ("Unref extension manager"); - /* this will unload the extens ions */ + /* this will unload the extensions */ g_object_unref (priv->extensions_manager); priv->extensions_manager = NULL; } if (priv->session != NULL) { - LOG ("Unref session ma nager"); + LOG ("Unref session manager"); g_object_unref (priv->session); priv->session = NULL; } if (priv->lockdown != NULL) { - LOG ("Unref lockdown co ntroller"); + LOG ("Unref lockdown controller"); g_object_unref (priv->lockdown); priv->lockdown = NULL; } @@ -524,13 +524,13 @@ ephy_shell_dispose (GObject *object) } if (priv->fs_toolbars_model != NULL) { - LOG ("Unref fullscreen toolbars model"); + LOG ("Unref fullscreen toolbars model"); g_object_unref (priv->fs_toolbars_model); priv->fs_toolbars_model = NULL; } if (priv->bme != NULL) { - LOG ("Unref Bookma rks Editor"); + LOG ("Unref Bookmarks Editor"); gtk_widget_destroy (GTK_WIDGET (priv->bme)); priv->bme = NULL; } |