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

« back to all changes in this revision

Viewing changes to app/actions/text-editor-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
34
34
#include "gimp-intl.h"
35
35
 
36
36
 
37
 
static GimpActionEntry text_editor_actions[] =
 
37
static const GimpActionEntry text_editor_actions[] =
38
38
{
39
 
  { "text-editor-toolbar", GIMP_STOCK_EDIT,
 
39
  { "text-editor-toolbar", GTK_STOCK_EDIT,
40
40
    "Text Editor Toolbar", NULL, NULL, NULL,
41
41
    GIMP_HELP_TEXT_EDITOR_DIALOG },
42
42
 
53
53
    NULL }
54
54
};
55
55
 
56
 
static GimpRadioActionEntry text_editor_direction_actions[] =
 
56
static const GimpRadioActionEntry text_editor_direction_actions[] =
57
57
{
58
58
  { "text-editor-direction-ltr", GIMP_STOCK_TEXT_DIR_LTR,
59
59
    N_("LTR"), "",
79
79
  gimp_action_group_add_radio_actions (group,
80
80
                                       text_editor_direction_actions,
81
81
                                       G_N_ELEMENTS (text_editor_direction_actions),
 
82
                                       NULL,
82
83
                                       GIMP_TEXT_DIRECTION_LTR,
83
84
                                       G_CALLBACK (text_editor_direction_cmd_callback));
84
85
}