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

« back to all changes in this revision

Viewing changes to app/actions/debug-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
29
29
#include "debug-actions.h"
30
30
#include "debug-commands.h"
31
31
 
 
32
 
32
33
#ifdef ENABLE_DEBUG_MENU
33
34
 
34
 
static GimpActionEntry debug_actions[] =
 
35
static const GimpActionEntry debug_actions[] =
35
36
{
36
37
  { "debug-menu", NULL, "D_ebug" },
37
38
 
38
39
  { "debug-mem-profile", NULL,
39
 
    "_Mem Profile", NULL, NULL,
 
40
    "_Memory Profile", NULL, NULL,
40
41
    G_CALLBACK (debug_mem_profile_cmd_callback),
41
42
    NULL },
42
43
 
48
49
  { "debug-dump-managers", NULL,
49
50
    "Dump _UI Managers", NULL, NULL,
50
51
    G_CALLBACK (debug_dump_managers_cmd_callback),
 
52
    NULL },
 
53
 
 
54
  { "debug-dump-attached-data", NULL,
 
55
    "Dump Attached Data", NULL, NULL,
 
56
    G_CALLBACK (debug_dump_attached_data_cmd_callback),
51
57
    NULL }
52
58
};
53
59