summaryrefslogtreecommitdiff
path: root/libpeas/peas-object-module.c
diff options
context:
space:
mode:
authorGarrett Regier <alias301@gmail.com>2010-12-17 12:42:29 -0800
committerSteve Frécinaux <code@istique.net>2010-12-19 11:37:26 +0100
commit73d648ac0fa9202063a71c2c18936189b6e61f69 (patch)
treea2d6afdcb10d46f51466e88a7badf1238083b111 /libpeas/peas-object-module.c
parentd417aea4b3904d4ee7c54fbb8751c5a4b3b41878 (diff)
downloadlibpeas-73d648ac0fa9202063a71c2c18936189b6e61f69.tar.gz
Added missing G_PARAM_STATIC_STRINGS to PeasObjectModule
Diffstat (limited to 'libpeas/peas-object-module.c')
-rw-r--r--libpeas/peas-object-module.c9
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));
}