~ubuntu-branches/ubuntu/feisty/gdm/feisty

« back to all changes in this revision

Viewing changes to gui/gdmcommon.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-12-19 11:47:26 UTC
  • mfrom: (1.4.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061219114726-isciqcsd4pkxtgx6
Tags: 2.17.4-0ubuntu1
* New upstream release:
  - Improvements to gdmsetup, which now supports many new features.
  - No longer set XDG_SESSION_COOKIE if there is no cookie.
  - Now the key and dwell gestures start Orca instead of Gnopernicus.  
    Must use Orca v2.17.4 or later to work with GDM.
  - Translation updates
* debian/patches/90_fix_format_overflow.patch:
  - dropped, included in release.
* debian/patches/16_configure_menu_item.patch:
  - updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
 
275
275
        sid = g_signal_lookup ("activate",
276
276
                               GTK_TYPE_MENU_ITEM);
277
 
        if (sid != NULL) {
 
277
        if (sid != 0) {
278
278
           g_signal_add_emission_hook (sid,
279
279
                                       0 /* detail */,
280
280
                                       delay_noblink,
284
284
 
285
285
        sid = g_signal_lookup ("key_press_event",
286
286
                               GTK_TYPE_WIDGET);
287
 
        if (sid != NULL) {
 
287
        if (sid != 0) {
288
288
           g_signal_add_emission_hook (sid,
289
289
                                       0 /* detail */,
290
290
                                       delay_noblink,
294
294
 
295
295
        sid = g_signal_lookup ("button_press_event",
296
296
                               GTK_TYPE_WIDGET);
297
 
        if (sid != NULL) {
 
297
        if (sid != 0) {
298
298
           g_signal_add_emission_hook (sid,
299
299
                                       0 /* detail */,
300
300
                                       delay_noblink,