~ubuntu-branches/debian/wheezy/nautilus/wheezy

« back to all changes in this revision

Viewing changes to eel/eel-canvas.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2011-11-21 20:52:38 UTC
  • mfrom: (3.1.14 experimental)
  • Revision ID: package-import@ubuntu.com-20111121205238-lo8b89pqpzv9p1jk
Tags: 3.2.1-2
* Upload to unstable.
* debian/control.in:
  - Drop Build-Depends on libdbus-glib-1-dev, no longer required.
  - Drop Recommends on desktop-base. It was originally added when nautilus
    was patched to show the .desktop icons from the desktop-base package. We
    don't do that anymore, so the Recommends has become obsolete.
  - Drop Recommends on consolekit. The ConsoleKit specific functionality has
    been moved into gnome-settings-daemon.
  - Drop Recommends on synaptic and app-install-data. We no longer call
    synaptic for mimetypes without a handler as this functionality is
    provided by alternatives like PackageKit or sessioninstaller now.
  - Update Vcs-* URLs.
* debian/nautilus-data.gconf-defaults:
  - Removed, obsolete.
* Refresh patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
514
514
void eel_canvas_world_to_window (EelCanvas *canvas,
515
515
                                 double worldx, double worldy, double *winx, double *winy);
516
516
 
 
517
/* Accessible implementation */
 
518
GType eel_canvas_accessible_get_type(void);
 
519
 
 
520
typedef struct _EelCanvasAccessible EelCanvasAccessible;
 
521
struct _EelCanvasAccessible
 
522
{
 
523
        GtkAccessible parent;
 
524
};
 
525
 
 
526
typedef struct _EelCanvasAccessibleClass EelCanvasAccessibleClass;
 
527
struct _EelCanvasAccessibleClass
 
528
{
 
529
        GtkAccessibleClass parent_class;
 
530
};
 
531
 
517
532
G_END_DECLS
518
533
 
519
534
#endif