aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-12-14 18:17:38 +0800
committerXan Lopez <xan@gnome.org>2010-12-14 21:09:59 +0800
commita3df3eb66d73f5ae98f68a7f1ce8322f64269497 (patch)
tree08444e4f02e615f31581a2bb14ea2d1e26a889cc /embed
parentbadfd49f16e581574e8da61e0b398b0bbe4f75a9 (diff)
downloadgsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.tar
gsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.tar.gz
gsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.tar.bz2
gsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.tar.lz
gsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.tar.xz
gsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.tar.zst
gsoc2013-epiphany-a3df3eb66d73f5ae98f68a7f1ce8322f64269497.zip
ephy-embed-single: couple of style fixes
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-single.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c
index 381f8c6bc..ea6f49ce0 100644
--- a/embed/ephy-embed-single.c
+++ b/embed/ephy-embed-single.c
@@ -271,7 +271,7 @@ ephy_embed_single_init (EphyEmbedSingle *single)
{
EphyEmbedSinglePrivate *priv;
WebKitWebPluginDatabase* database;
- GSList* list, *p;
+ GSList *list, *p;
single->priv = priv = EPHY_EMBED_SINGLE_GET_PRIVATE (single);
priv->online = TRUE;
@@ -287,7 +287,7 @@ ephy_embed_single_init (EphyEmbedSingle *single)
database = webkit_get_web_plugin_database ();
list = webkit_web_plugin_database_get_plugins (database);
for (p = list; p; p = p->next) {
- WebKitWebPlugin* plugin = WEBKIT_WEB_PLUGIN (p->data);
+ WebKitWebPlugin *plugin = WEBKIT_WEB_PLUGIN (p->data);
if (g_strcmp0 (webkit_web_plugin_get_name (plugin), "Shockwave Flash") == 0) {
webkit_web_plugin_set_enabled (plugin, FALSE);
break;