~ken-vandine/libindicate/with_mono_and_python_bindings-packaging

« back to all changes in this revision

Viewing changes to libindicate-gtk/indicator.c

  • Committer: Ken VanDine
  • Date: 2009-09-10 14:39:40 UTC
  • mfrom: (223.2.6 ubuntu)
  • Revision ID: ken.vandine@canonical.com-20090910143940-wjoeay60p7mfhhca
* New upstream release (LP: #427364)
  - Big change is renaming some signal names. :(
  - Bug fixes in getting properties.
  - Removing looking at the type on indicator lists.
  - Fixing the count callback.
* debian/control:
  - Increasing library versions to libindicate3
    and libindicate-gtk1.  Moving .install files as well.
* libindicate-dev and libindicate-gtk-dev.install change to
  /usr/include/libindicate-0.2 from 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
        if (!gdk_pixbuf_save_to_buffer((GdkPixbuf *)data, &png_data, &png_data_len, "png", &error, NULL)) {
56
56
                if (error == NULL) {
57
 
                        g_warning("Unable to create pixbuf data stream: %d", png_data_len);
 
57
                        g_warning("Unable to create pixbuf data stream: %d", (gint)png_data_len);
58
58
                } else {
59
59
                        g_warning("Unable to create pixbuf data stream: %s", error->message);
60
60
                        g_error_free(error);