Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,152
Issues
1,152
List
Boards
Labels
Service Desk
Milestones
Merge Requests
144
Merge Requests
144
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gtk
Commits
c2730849
Commit
c2730849
authored
Apr 04, 2001
by
Denis Oliver Kropp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gtk_calendar_button_press: check for action_func != NULL
parent
3bc782bd
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
36 additions
and
1 deletion
+36
-1
ChangeLog
ChangeLog
+5
-0
ChangeLog.pre-2-0
ChangeLog.pre-2-0
+5
-0
ChangeLog.pre-2-10
ChangeLog.pre-2-10
+5
-0
ChangeLog.pre-2-2
ChangeLog.pre-2-2
+5
-0
ChangeLog.pre-2-4
ChangeLog.pre-2-4
+5
-0
ChangeLog.pre-2-6
ChangeLog.pre-2-6
+5
-0
ChangeLog.pre-2-8
ChangeLog.pre-2-8
+5
-0
gtk/gtkcalendar.c
gtk/gtkcalendar.c
+1
-1
No files found.
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
Markdown
is supported
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