Re-ran indent on all .c & .h source code files
Like so --
find . -name "*.c" -or -name "*.h" -exec indent -nbfda -npcs -npsl -bli0 --no-tabs {} \;
The `indent` invocation differs from the last one noted in
CHANGES.txt (from 2006!?), in that I've added "--no-tabs",
to ensure indents are all space-based.
This commit is contained in:
parent
09f332367f
commit
cc05925d9e
99 changed files with 31659 additions and 27102 deletions
25
src/shapes.h
25
src/shapes.h
|
|
@ -118,8 +118,8 @@ const int shape_locked[NUM_SHAPES] = {
|
|||
0, /* Hexagon */
|
||||
0, /* Heptagon */
|
||||
0, /* Heptagon */
|
||||
1, /* Octagon */ /* FIXME: Consider unlocking? -bjk 2022.01.21 */
|
||||
1, /* Octagon */ /* FIXME: Consider unlocking? -bjk 2022.01.21 */
|
||||
1, /* Octagon *//* FIXME: Consider unlocking? -bjk 2022.01.21 */
|
||||
1, /* Octagon *//* FIXME: Consider unlocking? -bjk 2022.01.21 */
|
||||
0, /* Rhombus */
|
||||
0, /* Rhombus */
|
||||
0, /* 3 points star */
|
||||
|
|
@ -334,8 +334,10 @@ const char *const shape_tips[NUM_SHAPES] = {
|
|||
gettext_noop("A rectangle has four sides and four right angles."),
|
||||
|
||||
// Description of a circle
|
||||
gettext_noop("A circle is a curve where all points have the same distance from the center."),
|
||||
gettext_noop("A circle is a curve where all points have the same distance from the center."),
|
||||
gettext_noop
|
||||
("A circle is a curve where all points have the same distance from the center."),
|
||||
gettext_noop
|
||||
("A circle is a curve where all points have the same distance from the center."),
|
||||
|
||||
// Description of an ellipse
|
||||
gettext_noop("An ellipse is a stretched circle."),
|
||||
|
|
@ -362,8 +364,10 @@ const char *const shape_tips[NUM_SHAPES] = {
|
|||
gettext_noop("An octagon has eight equal sides."),
|
||||
|
||||
// Description of a rhombus
|
||||
gettext_noop("A rhombus has four equal sides, and opposite sides are parallel."),
|
||||
gettext_noop("A rhombus has four equal sides, and opposite sides are parallel."),
|
||||
gettext_noop
|
||||
("A rhombus has four equal sides, and opposite sides are parallel."),
|
||||
gettext_noop
|
||||
("A rhombus has four equal sides, and opposite sides are parallel."),
|
||||
|
||||
gettext_noop("A star with 3 points."),
|
||||
gettext_noop("A star with 3 points."),
|
||||
|
|
@ -423,15 +427,18 @@ const char *const shapemode_img_fnames[NUM_SHAPEMODES] = {
|
|||
/* String shown when Shapes tool is selected;
|
||||
one version for normal ("complex shapes"),
|
||||
the other for simplified mode ("simple shapes") */
|
||||
enum {
|
||||
enum
|
||||
{
|
||||
SHAPE_COMPLEXITY_NORMAL,
|
||||
SHAPE_COMPLEXITY_SIMPLE,
|
||||
NUM_SHAPE_COMPLEXITIES
|
||||
};
|
||||
|
||||
const char *const shape_tool_tips[NUM_SHAPE_COMPLEXITIES] = {
|
||||
gettext_noop("Pick a shape. Click to start drawing, drag, and let go when it is the size and shape you want. Move around to rotate it, and click again to draw it."),
|
||||
gettext_noop("Pick a shape. Click to start drawing, drag, and let go when it is the size and shape you want.")
|
||||
gettext_noop
|
||||
("Pick a shape. Click to start drawing, drag, and let go when it is the size and shape you want. Move around to rotate it, and click again to draw it."),
|
||||
gettext_noop
|
||||
("Pick a shape. Click to start drawing, drag, and let go when it is the size and shape you want.")
|
||||
};
|
||||
|
||||
/* Strings shown when switching between "from center"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue