~ubuntu-branches/debian/experimental/xfdesktop4/experimental

« back to all changes in this revision

Viewing changes to src/xfdesktop-volume-icon.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Yves-Alexis Perez, Lionel Le Folgoc
  • Date: 2011-02-07 00:17:47 UTC
  • mfrom: (1.4.9 upstream) (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110207001747-htl6rhaglfhhik8g
Tags: 4.8.1-1
[ Yves-Alexis Perez ]
* New upstream development release.
* debian/control:
  - update standards version to 3.9.1.
  - refresh build-deps for Xfce 4.7.
  - add build dep on libxfce4ui-1-dev.
  - drop xfce4-panel build-dep since we don't build any plugin anymore.
  - add build-dep on hardening-includes.
* Switch to 3.0 (quilt) source format.
* debian/rules:
  - pick {C,LD}FLAGS from dpkg-buildflags.
  - drop --libexecdir, --disable-rpath and --enable-final from configure args.
  - drop usr/lib from chrpath call, it doesn't exist anymore.
  - don't rename generic terminal .desktop file, it's gone too.
  - pass docdir to configure.
  - add hardening flags to {C,LD}FLAGS
* debian/xfdesktop4-data.install:
  - drop usr/share/desktop-directories from install file.
* debian/xfdesktop4.install:
  - drop etc/ no menu is installed anymore.
  - drop usr/ too, no more desktop menu module nor panel plugin. 
* debian/copyright updated for new upstream release.

[ Lionel Le Folgoc ]
* New upstream bugfix release.
* debian/control: clean up build-deps since xfdesktop has been ported to gio,
  exo-1 and garcon.
* Refresh build-deps for Xfce 4.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef __XFDESKTOP_VOLUME_ICON_H__
22
22
#define __XFDESKTOP_VOLUME_ICON_H__
23
23
 
24
 
#include <glib-object.h>
25
 
 
26
 
#include <thunar-vfs/thunar-vfs.h>
 
24
#include <gio/gio.h>
27
25
 
28
26
#include "xfdesktop-file-icon.h"
29
27
 
50
48
    XfdesktopFileIconClass parent;
51
49
};
52
50
 
53
 
GType xfdesktop_volume_icon_get_type() G_GNUC_CONST;
 
51
GType xfdesktop_volume_icon_get_type(void) G_GNUC_CONST;
54
52
 
55
 
XfdesktopVolumeIcon *xfdesktop_volume_icon_new(ThunarVfsVolume *volume,
 
53
XfdesktopVolumeIcon *xfdesktop_volume_icon_new(GVolume *volume,
56
54
                                               GdkScreen *screen);
57
55
 
58
 
G_CONST_RETURN ThunarVfsVolume *xfdesktop_volume_icon_peek_volume(XfdesktopVolumeIcon *icon);
 
56
GVolume *xfdesktop_volume_icon_peek_volume(XfdesktopVolumeIcon *icon);
59
57
 
60
58
 
61
59
G_END_DECLS