~ubuntu-branches/ubuntu/hardy/evince/hardy-proposed

« back to all changes in this revision

Viewing changes to shell/ev-metadata-manager.c

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-07-30 22:47:24 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20070730224724-3jcs7t9t5ymuj6os
Tags: 0.9.3-0ubuntu1
* New upstream release:
  - New Features and UI Improvements:
    - Use new GTK+ tootlips 
    - Printing multiple pages per sheet
    - Added UNIX-like key bindings hjkl
  - Bug fixes:
    - Do not block while enumerating printers in preview mode
    - Show new pages as soon as they are rendered even if other page 
      elements like forms, images or links are not ready yet 
    - Provide different options in the print dialog depending on document 
      type backend capabilities 
  - Translations:
    - es, eu, fi, hu, mk, nl, zh_CN
* debian/patches/02_autoconf.patch:
  - configure update

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
{
101
101
        if (ev_metadata_manager->timeout_id)
102
102
                return;
 
103
#if GLIB_CHECK_VERSION (2, 13, 5)
 
104
        ev_metadata_manager->timeout_id =
 
105
                g_timeout_add_seconds_full (G_PRIORITY_DEFAULT_IDLE,
 
106
                                            2,
 
107
                                            (GSourceFunc)ev_metadata_manager_save,
 
108
                                            NULL,
 
109
                                            NULL);
 
110
#else
103
111
        ev_metadata_manager->timeout_id = 
104
112
                g_timeout_add_full (G_PRIORITY_DEFAULT_IDLE,
105
113
                                    2000, /* 2 sec */
106
114
                                    (GSourceFunc)ev_metadata_manager_save,
107
115
                                    NULL,
108
116
                                    NULL);
 
117
#endif
109
118
}
110
119
 
111
120
/**