~ubuntu-branches/ubuntu/lucid/gtkhtml3.14/lucid

« back to all changes in this revision

Viewing changes to gtkhtml/test-suite.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-06-02 11:18:16 UTC
  • mfrom: (1.2.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090602111816-t7rv5r7z58i0lkb4
Tags: 1:3.27.2-0ubuntu1
* New upstream version
* debian/rules:
  - updated library version

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "htmltext.h"
19
19
 
20
20
typedef struct {
21
 
        char *name;
 
21
        const char *name;
22
22
        int (*test_function) (GtkHTML *html);
23
23
} Test;
24
24
 
66
66
        { NULL, NULL }
67
67
};
68
68
 
69
 
static void load_editable (GtkHTML *html, char *s)
 
69
static void load_editable (GtkHTML *html, const char *s)
70
70
{
71
71
        gtk_html_set_editable (html, FALSE);
72
72
        gtk_html_load_from_string (html, s, -1);