diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-06-20 15:01:41 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-06-20 15:02:14 +0800 |
commit | 12de056786b7c643058939ade4cadb6ee5d60e27 (patch) | |
tree | 89838f5fe312d77a983ed1bb62b767bf095b0e21 /src | |
parent | 373899ffdddc869f3852b04e058ac82c9deac2ba (diff) | |
download | gsoc2013-epiphany-12de056786b7c643058939ade4cadb6ee5d60e27.tar.gz gsoc2013-epiphany-12de056786b7c643058939ade4cadb6ee5d60e27.tar.zst gsoc2013-epiphany-12de056786b7c643058939ade4cadb6ee5d60e27.zip |
ephy-location-controller: add missing get_property bits for "show-icon"
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-location-controller.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-location-controller.c b/src/ephy-location-controller.c index f0a7a60c3..463606e85 100644 --- a/src/ephy-location-controller.c +++ b/src/ephy-location-controller.c @@ -477,6 +477,9 @@ ephy_location_controller_get_property (GObject *object, case PROP_ICON: g_value_set_object (value, priv->icon); break; + case PROP_SHOW_ICON: + g_value_set_boolean (value, priv->show_icon); + break; case PROP_LOCK_STOCK: g_value_set_string (value, priv->lock_stock_id); break; |