[eog] Add gtk-doc annotations to the new properties



commit 8dddacf02b46d83824c56d0a7f51dde2056eebb2
Author: Felix Riemann <friemann gnome org>
Date:   Mon Jul 19 21:44:32 2010 +0200

    Add gtk-doc annotations to the new properties

 src/eog-scroll-view.c |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)
---
diff --git a/src/eog-scroll-view.c b/src/eog-scroll-view.c
index edfcde9..2ea0a4e 100644
--- a/src/eog-scroll-view.c
+++ b/src/eog-scroll-view.c
@@ -2560,11 +2560,22 @@ eog_scroll_view_class_init (EogScrollViewClass *klass)
         gobject_class->set_property = eog_scroll_view_set_property;
         gobject_class->get_property = eog_scroll_view_get_property;
 
+	/**
+	 * EogScrollView:antialiasing-in:
+	 *
+	 * If %TRUE the displayed image will be filtered in a second pass
+	 * while being zoomed in.
+	 */
 	g_object_class_install_property (
 		gobject_class, PROP_ANTIALIAS_IN,
 		g_param_spec_boolean ("antialiasing-in", NULL, NULL, TRUE,
 				      G_PARAM_READWRITE | G_PARAM_STATIC_NAME));
-
+	/**
+	 * EogScrollView:antialiasing-out:
+	 *
+	 * If %TRUE the displayed image will be filtered in a second pass
+	 * while being zoomed out.
+	 */
 	g_object_class_install_property (
 		gobject_class, PROP_ANTIALIAS_OUT,
 		g_param_spec_boolean ("antialiasing-out", NULL, NULL, TRUE,



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