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
GNOME
gnumeric
Commits
92595046
Commit
92595046
authored
Jan 19, 2000
by
Jody Goldberg
Browse files
Bug fix. gtk_timeout functions need to return a flag.
Bug fix. gtk_timeout functions need to return a flag.
parent
ce29fe57
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog-2000-02-23
View file @
92595046
2000-01-19 Jody Goldberg <jgoldberg@home.com>
* src/item-cursor.c (item_cursor_animation_callback) : Return TRUE
so that the timer will remaing.
2000-01-19 JP Rosevear <jpr@arcavia.com>
* src/dialogs/dialog-cell-sort.c (dialog_cell_sort): Modularize a
...
...
OChangeLog-2000-02-23
View file @
92595046
2000-01-19 Jody Goldberg <jgoldberg@home.com>
* src/item-cursor.c (item_cursor_animation_callback) : Return TRUE
so that the timer will remaing.
2000-01-19 JP Rosevear <jpr@arcavia.com>
* src/dialogs/dialog-cell-sort.c (dialog_cell_sort): Modularize a
...
...
src/item-cursor.c
View file @
92595046
...
...
@@ -39,11 +39,12 @@ enum {
ARG_STYLE
,
/* The style type */
};
static
void
static
int
item_cursor_animation_callback
(
ItemCursor
*
item_cursor
)
{
item_cursor
->
state
=
!
item_cursor
->
state
;
item_cursor_request_redraw
(
item_cursor
);
return
TRUE
;
}
static
void
...
...
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