~ubuntu-branches/debian/jessie/file-roller/jessie

« back to all changes in this revision

Viewing changes to copy-n-paste/eggdesktopfile.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Josselin Mouette, Michael Biebl
  • Date: 2011-10-13 22:43:53 UTC
  • mfrom: (5.1.5 experimental)
  • Revision ID: package-import@ubuntu.com-20111013224353-7fub412oa8jwkcgt
Tags: 3.0.2-2
[ Josselin Mouette ]
* file-roller.mime: dropped. We don’t do necromancy anymore.
* Drop desktop-check-mime-types call too.

[ Michael Biebl ]
* Upload to unstable.
* debian/control.in:
  - Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
* debian/watch:
  - Switch to .xz tarballs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
double    egg_desktop_file_get_numeric            (EggDesktopFile  *desktop_file,
128
128
                                                   const char      *key,
129
129
                                                   GError         **error);
 
130
int       egg_desktop_file_get_integer            (EggDesktopFile  *desktop_file,
 
131
                                                   const char      *key,
 
132
                                                   GError         **error);
130
133
char    **egg_desktop_file_get_string_list        (EggDesktopFile  *desktop_file,
131
134
                                                   const char      *key,
132
135
                                                   gsize           *length,
150
153
} EggDesktopFileError;
151
154
 
152
155
/* Global application desktop file */
153
 
void            egg_set_desktop_file (const char *desktop_file_path);
154
 
EggDesktopFile *egg_get_desktop_file (void);
 
156
void            egg_set_desktop_file                  (const char *desktop_file_path);
 
157
void            egg_set_desktop_file_without_defaults (const char *desktop_file_path);
 
158
EggDesktopFile *egg_get_desktop_file                  (void);
155
159
 
156
160
 
157
161
G_END_DECLS