[libpeas] Added missing G_PARAM_STATIC_STRINGS to PeasObjectModule



commit 73d648ac0fa9202063a71c2c18936189b6e61f69
Author: Garrett Regier <alias301 gmail com>
Date:   Fri Dec 17 12:42:29 2010 -0800

    Added missing G_PARAM_STATIC_STRINGS to PeasObjectModule

 libpeas/peas-object-module.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/libpeas/peas-object-module.c b/libpeas/peas-object-module.c
index 661eb2d..2fde033 100644
--- a/libpeas/peas-object-module.c
+++ b/libpeas/peas-object-module.c
@@ -250,7 +250,8 @@ peas_object_module_class_init (PeasObjectModuleClass *klass)
                                                         "The module to load for this object",
                                                         NULL,
                                                         G_PARAM_READWRITE |
-                                                        G_PARAM_CONSTRUCT_ONLY));
+                                                        G_PARAM_CONSTRUCT_ONLY |
+                                                        G_PARAM_STATIC_STRINGS));
 
   g_object_class_install_property (object_class,
                                    PROP_PATH,
@@ -259,7 +260,8 @@ peas_object_module_class_init (PeasObjectModuleClass *klass)
                                                         "The path to use when loading this module",
                                                         NULL,
                                                         G_PARAM_READWRITE |
-                                                        G_PARAM_CONSTRUCT_ONLY));
+                                                        G_PARAM_CONSTRUCT_ONLY |
+                                                        G_PARAM_STATIC_STRINGS));
 
   g_object_class_install_property (object_class,
                                    PROP_RESIDENT,
@@ -268,7 +270,8 @@ peas_object_module_class_init (PeasObjectModuleClass *klass)
                                                          "Whether the module is resident",
                                                          FALSE,
                                                          G_PARAM_READWRITE |
-                                                         G_PARAM_CONSTRUCT_ONLY));
+                                                         G_PARAM_CONSTRUCT_ONLY |
+                                                         G_PARAM_STATIC_STRINGS));
 
   g_type_class_add_private (klass, sizeof (PeasObjectModulePrivate));
 }



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