~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/actions/buffers-actions.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
36
36
#include "gimp-intl.h"
37
37
 
38
38
 
39
 
static GimpActionEntry buffers_actions[] =
 
39
static const GimpActionEntry buffers_actions[] =
40
40
{
41
41
  { "buffers-popup", GIMP_STOCK_BUFFER,
42
42
    N_("Buffers Menu"), NULL, NULL, NULL,
45
45
  { "buffers-paste", GTK_STOCK_PASTE,
46
46
    N_("_Paste Buffer"), "",
47
47
    N_("Paste the selected buffer"),
48
 
    G_CALLBACK (buffers_paste_buffer_cmd_callback),
 
48
    G_CALLBACK (buffers_paste_cmd_callback),
49
49
    GIMP_HELP_BUFFER_PASTE },
50
50
 
51
51
  { "buffers-paste-into", GIMP_STOCK_PASTE_INTO,
52
52
    N_("Paste Buffer _Into"), NULL,
53
53
    N_("Paste the selected buffer into the selection"),
54
 
    G_CALLBACK (buffers_paste_buffer_into_cmd_callback),
 
54
    G_CALLBACK (buffers_paste_into_cmd_callback),
55
55
    GIMP_HELP_BUFFER_PASTE_INTO },
56
56
 
57
57
  { "buffers-paste-as-new", GIMP_STOCK_PASTE_AS_NEW,
58
58
    N_("Paste Buffer as _New"), NULL,
59
59
    N_("Paste the selected buffer as new image"),
60
 
    G_CALLBACK (buffers_paste_buffer_as_new_cmd_callback),
 
60
    G_CALLBACK (buffers_paste_as_new_cmd_callback),
61
61
    GIMP_HELP_BUFFER_PASTE_AS_NEW },
62
62
 
63
63
  { "buffers-delete", GTK_STOCK_DELETE,
64
64
    N_("_Delete Buffer"), "",
65
65
    N_("Delete the selected buffer"),
66
 
    G_CALLBACK (buffers_delete_buffer_cmd_callback),
 
66
    G_CALLBACK (buffers_delete_cmd_callback),
67
67
    GIMP_HELP_BUFFER_DELETE }
68
68
};
69
69