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
3aafc86e
Commit
3aafc86e
authored
Jan 20, 2000
by
Jody Goldberg
Browse files
Fix typo.
parent
628c7a38
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog-2000-02-23
View file @
3aafc86e
...
...
@@ -4,6 +4,7 @@
Use the undo framework.
* src/sheet.c (sheet_fill_selection_with) : Take a context.
(sheet_save_row_col_sizes) : Use is_cols. Doh!
* src/gnumeric-sheet.c (gnumeric_sheet_key_mode_sheet) : Add
Alt-Pg{Up,Down}. sheet_fill_selection_with now takes a context.
...
...
OChangeLog-2000-02-23
View file @
3aafc86e
...
...
@@ -4,6 +4,7 @@
Use the undo framework.
* src/sheet.c (sheet_fill_selection_with) : Take a context.
(sheet_save_row_col_sizes) : Use is_cols. Doh!
* src/gnumeric-sheet.c (gnumeric_sheet_key_mode_sheet) : Add
Alt-Pg{Up,Down}. sheet_fill_selection_with now takes a context.
...
...
src/sheet.c
View file @
3aafc86e
...
...
@@ -3749,7 +3749,9 @@ sheet_save_row_col_sizes (Sheet *sheet, gboolean const is_cols,
res
=
g_new
(
double
,
count
);
for
(
i
=
0
;
i
<
count
;
++
i
)
{
ColRowInfo
*
info
=
sheet_col_get_info
(
sheet
,
index
+
i
);
ColRowInfo
*
info
=
is_cols
?
sheet_col_get_info
(
sheet
,
index
+
i
)
:
sheet_row_get_info
(
sheet
,
index
+
i
);
g_return_val_if_fail
(
info
!=
NULL
,
NULL
);
/* be anal, and leak */
res
[
i
]
=
info
->
units
;
if
(
info
->
hard_size
)
...
...
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