Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nikita Churaev
gtk
Commits
c2730849
Commit
c2730849
authored
Apr 04, 2001
by
Denis Oliver Kropp
Browse files
gtk_calendar_button_press: check for action_func != NULL
parent
3bc782bd
Changes
8
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
ChangeLog.pre-2-0
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
ChangeLog.pre-2-10
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
ChangeLog.pre-2-2
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
ChangeLog.pre-2-4
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
ChangeLog.pre-2-6
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
ChangeLog.pre-2-8
View file @
c2730849
2001-04-04 Denis Oliver Kropp <dok@convergence.de>
* gtk/gtkcalendar.c (gtk_calendar_button_press):
check for action_func != NULL
2001-04-04 Sven Neumann <sven@gimp.org>
* tests/testgtk.c (test_init): corrected path to gtk.immodules
...
...
gtk/gtkcalendar.c
View file @
c2730849
...
...
@@ -2332,7 +2332,7 @@ gtk_calendar_button_press (GtkWidget *widget,
action_func
=
gtk_calendar_set_year_next
;
/* only call the action on single click, not double */
if
(
event
->
type
==
GDK_BUTTON_PRESS
)
if
(
action_func
&&
event
->
type
==
GDK_BUTTON_PRESS
)
(
*
action_func
)
(
calendar
);
return
action_func
!=
NULL
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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