[epiphany] EphyUriTester: Use G_PARAM_STATIC_STRINGS



commit 970be41990b8e13ca44ec3c1b7988244e6e95f2b
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Sat Nov 7 18:14:52 2015 -0600

    EphyUriTester: Use G_PARAM_STATIC_STRINGS

 embed/web-extension/ephy-uri-tester.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/embed/web-extension/ephy-uri-tester.c b/embed/web-extension/ephy-uri-tester.c
index 956debb..955e327 100644
--- a/embed/web-extension/ephy-uri-tester.c
+++ b/embed/web-extension/ephy-uri-tester.c
@@ -883,14 +883,14 @@ ephy_uri_tester_class_init (EphyUriTesterClass *klass)
     g_param_spec_pointer ("filters",
                           "filters",
                           "filters",
-                          G_PARAM_WRITABLE);
+                          G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS );
 
   obj_properties[PROP_BASE_DATA_DIR] =
     g_param_spec_string ("base-data-dir",
                          "Base data dir",
                          "The base dir where to create the adblock data dir",
                          NULL,
-                         G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
+                         G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
 
   g_object_class_install_properties (object_class, LAST_PROP, obj_properties);
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]