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
990a0113
Commit
990a0113
authored
Jun 08, 2000
by
Jody Goldberg
Browse files
I hate typos.
parent
69665bb8
Changes
9
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
ChangeLog-2000-10-10
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
OChangeLog-2000-10-10
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
OChangeLog-2001-06-26
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
OChangeLog-2002-01-22
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
OChangeLog-2003-12-23
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
OChangeLog-2005-11-14
View file @
990a0113
2000-06-08 Jody Goldberg <jgoldberg@home.com>
* src/colrow.c (col_row_restore_sizes) : Arrgghh. Stupid typo.
* src/workbook-edit.c (entry_changed) : Only autocomplete text that
begins with an alphabetic
...
...
src/colrow.c
View file @
990a0113
...
...
@@ -183,8 +183,8 @@ col_row_restore_sizes (Sheet *sheet, gboolean const is_cols,
if
(
sizes
[
i
-
first
]
==
0
.)
{
ColRowCollection
*
infos
=
is_cols
?
&
(
sheet
->
cols
)
:
&
(
sheet
->
rows
);
ColRowInfo
***
segment
=
(
ColRowInfo
***
)
&
COLROW_GET_SEGMENT
(
infos
,
i
-
first
);
int
const
sub
=
COLROW_SUB_INDEX
(
i
-
first
);
(
ColRowInfo
***
)
&
COLROW_GET_SEGMENT
(
infos
,
i
);
int
const
sub
=
COLROW_SUB_INDEX
(
i
);
ColRowInfo
*
cri
=
NULL
;
if
(
*
segment
!=
NULL
)
{
cri
=
(
*
segment
)[
sub
];
...
...
src/workbook-edit.c
View file @
990a0113
...
...
@@ -18,6 +18,8 @@
#include
"rendered-value.h"
#include
"gnumeric-util.h"
#include
<ctype.h>
/*
* Shuts down the auto completion engine
*/
...
...
@@ -151,7 +153,7 @@ entry_changed (GtkEntry *entry, void *data)
* Turn off auto-completion if the user has edited or the text
* does not begin with an alphabetic character.
*/
if
(
text_len
<
wb
->
priv
->
auto_max_size
||
!
isalpha
(
*
text
))
if
(
text_len
<
wb
->
priv
->
auto_max_size
||
!
isalpha
(
(
unsigned
char
)
*
text
))
wb
->
priv
->
auto_completing
=
FALSE
;
if
(
application_use_auto_complete_get
()
&&
wb
->
priv
->
auto_completing
)
...
...
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