[goffice] Documentation typos.
- From: Jean Bréfort <jbrefort src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [goffice] Documentation typos.
- Date: Mon, 8 Mar 2010 10:30:42 +0000 (UTC)
commit cd6b99b4efd4fe8d546703f927f4e08e5ad3d04d
Author: Jean Brefort <jean brefort normalesup org>
Date: Mon Mar 8 11:26:45 2010 +0100
Documentation typos.
goffice/utils/go-styled-object.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/goffice/utils/go-styled-object.c b/goffice/utils/go-styled-object.c
index a3c7767..6305884 100644
--- a/goffice/utils/go-styled-object.c
+++ b/goffice/utils/go-styled-object.c
@@ -74,18 +74,18 @@ go_styled_object_get_type (void)
* In that case, the function will always return false:
* <informalexample>
* <programlisting>
- * style = go_styled_object_go_styled_object_set_styleget_style (gso);
+ * style = go_styled_object_get_style (gso);
* style->line.width = 2;
* size_changed = go_styled_object_set_style (gso, style);
* </programlisting>
* </informalexample>
- * In this sample, the call to #go_styled_object_set_style() is just useless. You
+ * In this sample, the call to go_styled_object_set_style() is just useless. You
* need to check yourself if you really change the size, call
- * #go_styled_object_style_changed() to trigger the "style-changed" event.
+ * go_styled_object_style_changed() to trigger the "style-changed" event.
* So the following code is much better:
* <informalexample>
* <programlisting>
- * style = go_styled_object_go_styled_object_set_styleget_style (gso);
+ * style = go_styled_object_get_style (gso);
* if (style->line.width != 2.) {
* style->line.width = 2;
* go_styled_object_style_changed (gso);
@@ -97,7 +97,7 @@ go_styled_object_get_type (void)
* or even better:
* <informalexample>
* <programlisting>
- * style = go_style_dup (go_styled_object_go_styled_object_set_styleget_style (gso));
+ * style = go_style_dup (go_styled_object_get_style (gso));
* style->line.width = 2;
* size_changed = go_styled_object_set_style (gso, style);
* g_object_unref (style);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]