[gegl/pippin/property-keys] emboss: add missing NULL sentinels



commit 5d8c9c33dbc32c1fffcf86ca7f6a27d6fbad4bf6
Author: Øyvind Kolås <pippin gimp org>
Date:   Wed May 14 19:24:03 2014 +0200

    emboss: add missing NULL sentinels

 operations/common/emboss.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/emboss.c b/operations/common/emboss.c
index 00781f4..d3cb68f 100644
--- a/operations/common/emboss.c
+++ b/operations/common/emboss.c
@@ -38,7 +38,8 @@ gegl_property_double (azimuth,
     "min", 0.0,
     "max", 360.0,
     "default", 30.0,
-    "blurb", _("The light angle (degrees)"))
+    "blurb", _("The light angle (degrees)"),
+    NULL)
 
 gegl_property_double (elevation,
     "nick", _("Elevation"),
@@ -53,7 +54,8 @@ gegl_property_int (depth,
     "min", 1,
     "max", 100,
     "default", 20,
-    "blurb", _("The filter width"))
+    "blurb", _("The filter width"),
+    NULL)
 
 #else
 


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