~ubuntu-branches/ubuntu/oneiric/gnome-panel/oneiric

« back to all changes in this revision

Viewing changes to applets/clock/clock-marshallers.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher, Martin Pitt
  • Date: 2010-06-23 10:26:28 UTC
  • mfrom: (1.13.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100623102628-p68n4gjw74mtv5js
Tags: 1:2.30.2-0ubuntu1
* New upstream version:
  Panel
  - Make sure that newly-created panels become unhidden 
  Notification Area Applet
  - Fix issues with old-style multiscreen setups (lp: #128735)
  Misc
  - Link the clock applet with libm 
* debian/gnome-panel.preinst: set debhelper token
* debian/patches/90_git_new_unhidden.patch:
  - dropped, the fix is in the new version

[ Martin Pitt ]
* Remove transitional code that is only relevant for upgrading from old
  Ubuntu releases to lucid:
  - Remove debian/indicator-applet.desktop, debian/add-indicator-applet.py,
    debian/fusa-applet.note.in, debian/migrate-fusa-config.py
  - debian/gnome-panel.install, debian/rules: Remove installation of above
    files.
  - Remove debian/gnome-panel.preinst, no relevant code any more
  - Remove debian/patches/20_fusa_migration_note_i18n.patch
  - Add debian/gnome-panel.preinst: Clean up indicator-applet.desktop and
    /usr/share/gconf/defaults/25_gnome_panel_indicator_applet on upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#define g_marshal_value_peek_boxed(v)    g_value_get_boxed (v)
26
26
#define g_marshal_value_peek_pointer(v)  g_value_get_pointer (v)
27
27
#define g_marshal_value_peek_object(v)   g_value_get_object (v)
 
28
#define g_marshal_value_peek_variant(v)  g_value_get_variant (v)
28
29
#else /* !G_ENABLE_DEBUG */
29
30
/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API.
30
31
 *          Do not access GValues directly in your code. Instead, use the
48
49
#define g_marshal_value_peek_boxed(v)    (v)->data[0].v_pointer
49
50
#define g_marshal_value_peek_pointer(v)  (v)->data[0].v_pointer
50
51
#define g_marshal_value_peek_object(v)   (v)->data[0].v_pointer
 
52
#define g_marshal_value_peek_variant(v)  (v)->data[0].v_pointer
51
53
#endif /* !G_ENABLE_DEBUG */
52
54
 
53
55