summaryrefslogtreecommitdiff
path: root/wikipedia/src/models/category_model.js
diff options
context:
space:
mode:
Diffstat (limited to 'wikipedia/src/models/category_model.js')
-rw-r--r--wikipedia/src/models/category_model.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/wikipedia/src/models/category_model.js b/wikipedia/src/models/category_model.js
index 4682cac..ea9bfb6 100644
--- a/wikipedia/src/models/category_model.js
+++ b/wikipedia/src/models/category_model.js
@@ -15,10 +15,10 @@ const CategoryModel = new Lang.Class({
'title': GObject.ParamSpec.string('title', 'Category Name', 'This is the name that is displayed on the front page and as the title on the category page.',
GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE | GObject.ParamFlags.CONSTRUCT,
""),
- 'image_uri': GObject.ParamSpec.string('image_uri', 'Category Image URI', 'Path to image for this category in the GResource',
+ 'image-uri': GObject.ParamSpec.string('image-uri', 'Category Image URI', 'Path to image for this category in the GResource',
GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE | GObject.ParamFlags.CONSTRUCT,
""),
- 'image_thumbnail_uri': GObject.ParamSpec.string('image_thumbnail_uri', 'Category Thumbnail Image URI', 'Path to thumbnail image for this category in the GResource',
+ 'image-thumbnail-uri': GObject.ParamSpec.string('image-thumbnail-uri', 'Category Thumbnail Image URI', 'Path to thumbnail image for this category in the GResource',
GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE | GObject.ParamFlags.CONSTRUCT,
""),
},