~ubuntu-branches/ubuntu/maverick/conglomerate/maverick

« back to all changes in this revision

Viewing changes to src/cong-editor-node-comment.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-11-08 05:07:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051108050706-bcg60nwqf1z3w0d6
Tags: 0.9.1-1ubuntu1
* Resynchronise with Debian (Closes: #4397).
  - Thanks, Jordan Mantha.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
static void 
47
47
on_signal_set_text_notify_after (CongDocument *doc, 
48
48
                                 CongNodePtr node, 
49
 
                                 const xmlChar *new_content, 
 
49
                                 const gchar *new_content, 
50
50
                                 gpointer user_data);
51
51
 
52
52
static void 
75
75
                                    traversal_node);    
76
76
 
77
77
        PRIVATE(editor_node_comment)->text_cache = cong_text_cache_new (FALSE, /* Don't strip whitespace */
78
 
                                                                        cong_traversal_node_get_node (traversal_node)->content,
 
78
                                                                        (const gchar*)cong_traversal_node_get_node (traversal_node)->content,
79
79
                                                                        NULL);
80
80
 
81
81
        return editor_node_comment;
158
158
static void 
159
159
on_signal_set_text_notify_after (CongDocument *doc, 
160
160
                                 CongNodePtr node, 
161
 
                                 const xmlChar *new_content, 
 
161
                                 const gchar *new_content, 
162
162
                                 gpointer user_data)
163
163
{
164
164
        CongEditorNodeText *editor_node_text = (CongEditorNodeText*)user_data;