Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
4cdd6ba1
Commit
4cdd6ba1
authored
Jan 09, 1999
by
Peter Teichman
Browse files
plug-ins/MapObject/mapobject_ui.c (angle_update): fixed a
segfault.. The wrong argument to angle_update was being dereferenced.
parent
576edc87
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
4cdd6ba1
Sat Jan 9 03:42:30 EST 1999 Peter Teichman <pat4@acpub.duke.edu>
* plug-ins/MapObject/mapobject_ui.c (angle_update): fixed a
segfault.. The wrong argument to angle_update was being dereferenced.
Thu Jan 7 15:45:14 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: added pl to ALL_LINGUAS
...
...
plug-ins/MapObject/mapobject_ui.c
View file @
4cdd6ba1
...
...
@@ -144,8 +144,8 @@ void angle_update(GtkWidget *widget, GtkScale *scale)
GtkAdjustment
*
adjustment
;
valueptr
=
(
gdouble
*
)
gtk_object_get_data
(
GTK_OBJECT
(
widget
),
"ValuePtr"
);
adjustment
=
gtk_range_get_adjustment
(
GTK_RANGE
(
scale
));
adjustment
=
gtk_range_get_adjustment
(
GTK_RANGE
(
widget
));
*
valueptr
=
(
gdouble
)
adjustment
->
value
;
if
(
mapvals
.
showgrid
==
TRUE
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment