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
a27bee33
Commit
a27bee33
authored
Aug 30, 1998
by
Daniel Veillard
Browse files
Added loading of workbook, saving it goes to default.wb file, Daniel.
parent
ba282651
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
ChangeLog-1999-07-09
View file @
a27bee33
Sun Aug 30 17:19:02 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
* src/xml-io.c: added saving of the current workbook as one
file, added code to load the workbook. Some part are really
untested/incomplete especially the style support.
* src/main.c (main): added loading of "default.wb" on startup
i.e. the default workbook.
1998-08-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* src/item-bar.c (item_bar_get_line_points): New helper routine,
...
...
ChangeLog-2000-02-23
View file @
a27bee33
Sun Aug 30 17:19:02 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
* src/xml-io.c: added saving of the current workbook as one
file, added code to load the workbook. Some part are really
untested/incomplete especially the style support.
* src/main.c (main): added loading of "default.wb" on startup
i.e. the default workbook.
1998-08-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* src/item-bar.c (item_bar_get_line_points): New helper routine,
...
...
OChangeLog-1999-07-09
View file @
a27bee33
Sun Aug 30 17:19:02 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
* src/xml-io.c: added saving of the current workbook as one
file, added code to load the workbook. Some part are really
untested/incomplete especially the style support.
* src/main.c (main): added loading of "default.wb" on startup
i.e. the default workbook.
1998-08-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* src/item-bar.c (item_bar_get_line_points): New helper routine,
...
...
OChangeLog-2000-02-23
View file @
a27bee33
Sun Aug 30 17:19:02 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
* src/xml-io.c: added saving of the current workbook as one
file, added code to load the workbook. Some part are really
untested/incomplete especially the style support.
* src/main.c (main): added loading of "default.wb" on startup
i.e. the default workbook.
1998-08-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* src/item-bar.c (item_bar_get_line_points): New helper routine,
...
...
src/libgnumeric.c
View file @
a27bee33
...
...
@@ -17,7 +17,10 @@ main (int argc, char *argv [])
constants_init
();
functions_init
();
current_workbook
=
workbook_new_with_sheets
(
1
);
current_workbook
=
gnumericReadXmlWorkbook
(
"default.wb"
);
if
(
current_workbook
==
NULL
)
{
current_workbook
=
workbook_new_with_sheets
(
1
);
}
gtk_widget_show
(
current_workbook
->
toplevel
);
gtk_main
();
...
...
src/main.c
View file @
a27bee33
...
...
@@ -17,7 +17,10 @@ main (int argc, char *argv [])
constants_init
();
functions_init
();
current_workbook
=
workbook_new_with_sheets
(
1
);
current_workbook
=
gnumericReadXmlWorkbook
(
"default.wb"
);
if
(
current_workbook
==
NULL
)
{
current_workbook
=
workbook_new_with_sheets
(
1
);
}
gtk_widget_show
(
current_workbook
->
toplevel
);
gtk_main
();
...
...
src/xml-io.c
View file @
a27bee33
This diff is collapsed.
Click to expand it.
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