- 13 May, 2000 3 commits
-
-
Jose Maria Celorio authored
-
Jose Maria Celorio authored
-
Kenneth Christiansen authored
bug-buddy/po/da.po gnome-media/po/da.po gnome-utils/po/da.po gnomeicu/po/da.po gnumeric/po/da.po nautilus/po/da.po sodipodi/po/da.po
-
- 12 May, 2000 2 commits
-
-
Gregory McLean authored
-- Greg
-
Szabolcs Ban authored
* Thank to Emese Kovacs, this file updated
-
- 11 May, 2000 1 commit
-
-
Jon K Hellan authored
2000-05-11 Jon K Hellan <hellan@acm.org> * src/workbook.c (workbook_rename_sheet): Don't make "Duplicate sheet name" message if sheet name did not change.
-
- 10 May, 2000 17 commits
-
-
Michael Meeks authored
2000-05-11 Michael Meeks <michael@helixcode.com> * src/Makefile.am (gnumeric_libs): kill libole2 libs kludge. 2000-05-10 Michael Meeks <michael@helixcode.com> * configure.in: Add check for libole2 and add to gnome-config.
-
Karl Eichwalder authored
-
Jody Goldberg authored
Make accelerators possible in gnumeric_toolbars. Enable the workbook close optimization that clears the formula list before removing the cells. Add some (currently broken) accelerators for font attributes.
-
Jon K Hellan authored
2000-05-10 Jon K Hellan <hellan@acm.org> * src/dialogs/dialog-analysis-tools.c (dialog_data_analysis): Use gnumeric_clist_moveto to ensure that selected tool is visible. * src/dialogs/dialog-function-select.c (category_list_fill): s/current sheet/selected category/ (function_list_fill): s/category/function/ * src/dialogs/dialog-zoom.c (dialog_zoom_impl): s/selected function/current sheet/ * src/dialogs/dialog-cell-format.c (fmt_dialog_init_format_page): Use gnumeric_clist_make_selection_visible to ensure that list rows are visible. * src/dialogs/dialog-sheet-order.c (dialog_sheet_order_impl): s/list rows/current sheet/ * src/gnumeric-util.c (clist_moveto): New helper function scroll list so that row becomes visible. (cb_clist_moveto): New callback function: Disconnect callback and use clist_moveto to make row visible. * src/gnumeric-util.[ch] (gnumeric_clist_moveto): New public function: Make given row visible in list - immediately if mapped, otherwise by attaching a signal handler. (gnumeric_clist_make_selection_visible): New public function: Make first selected row visible in list. 2000-05-10 Jon K Hellan <hellan@acm.org> * src/func.c (tokenized_help_find): This segfaulted if no help was available. The test for no help failed because of signedness. Fixed it.
-
Michael Meeks authored
2000-05-10 Michael Meeks <michael@helixcode.com> * gnumeric.oafinfo: fix borked magic sodding UUID's which suck. * src/corba-workbook-factory.c (_WorkbookFactory_init): update for oaf, but only the IID. * src/embeddable-grid.c (EmbeddableGridFactory_init): update for oaf. (embeddable_grid_factory): add failure warning. * Makefile.am: Install oafinfo.
-
Michael Meeks authored
-
Jody Goldberg authored
Is not complete or correct. Do not enable yet.
-
Jacob Berkman authored
2000-05-10 Jacob Berkman <jacob@helixcode.com> * configure.in (use_wm_icons): check for using window icons * src/main.c (gnumeric_main): use an icon if available in gnome-libs * src/Makefile.am (INCLUDES): add a -D for the icon dir
-
Jody Goldberg authored
-
Karl Eichwalder authored
-
Jody Goldberg authored
-
Jody Goldberg authored
-
Kenneth Christiansen authored
Kenneth
-
Jody Goldberg authored
-
Jody Goldberg authored
-
Jody Goldberg authored
-
Jody Goldberg authored
-
- 09 May, 2000 13 commits
-
-
Morten Welinder authored
-
Valek Frob authored
-
Jody Goldberg authored
-
Jody Goldberg authored
-
Jody Goldberg authored
-
Jody Goldberg authored
2000-05-09 Jody Goldberg <jgoldberg@home.com> * src/commands.c (cmd_set_date_time_{undo,redo}) : Mark the changed cell for status update. * src/Makefile.am (INCLUDES) : Remove extra '/' at end. * src/workbook.c (insert_current_time_cmd) : fix cut-n-paste-o.
-
Valek Frob authored
-
Jody Goldberg authored
2000-05-09 Jody Goldberg <jgoldberg@home.com> * src/xml-io.c (xml_probe) : Check versioning in descending order. (gnumeric_xml_read_workbook) : Add check for v3.
-
Valek Frob authored
-
Almer. S. Tigelaar authored
2000-05-09 Almer. S. Tigelaar. <almer1@dds.nl> * NEWS Updated the news file
-
Kjartan Maraas authored
2000-05-09 Kjartan Maraas <kmaraas@online.no> * no.po: Updated Norwegian translation.
-
Jody Goldberg authored
2000-05-08 Jody Goldberg <jgoldberg@home.com> * src/cell.c (cell_set_value) : When guessing what the entered text was for a supplied string value prepend a \' to ensure that the value stays a string, and so that blank cells work better.
-
Jody Goldberg authored
- Spans were not redrawn when interupted. - Spans were not recalculated when the blockage was cleared. - Sorting crashed because the semantics of sheet_remove_cell changed to call cell_destroy. 2000-05-08 Jody Goldberg <jgoldberg@home.com> * src/sheet.c (sheet_cell_calc_span) : redraw the bounding range when interupting spans. (sheet_clear_region) : Respan ranges that were interupted by the cleared region. (sheet_cell_remove_simple) : rename from sheet_cell_remove_internal and export.
-
- 08 May, 2000 4 commits
-
-
Jon K Hellan authored
2000-05-08 Jon K Hellan <hellan@acm.org> * csv-io.c (CSV_DESCR): Description said that plugin can read and write. Fixed to say write only.
-
Jon K Hellan authored
2000-05-08 Jon K Hellan <hellan@acm.org> * src/file.c (cb_select): New callback: Make double click on list in import filter chooser works like "OK". (workbook_import): Back when we first started using glade, we used a hack to avoid flicker when popping up the filter chooser. We now know how to do it right, and remove the hack. (workbook_import): Connect callback to handle double click. (workbook_import): Fix bug: return value from import would clobber return value from dialog_run. We now close dialog after retrieving selection, but before importing. We really should keep the dialog up until user either succeeds with import or explicitly cancels. But we let that wait. This behaviour should be implemented in a lot of places in a coordinated way. (workbook_import): Do not destroy workbook after WM close - it is already destroyed.
-
Morten Welinder authored
-
Morten Welinder authored
2000-05-03 Morten Welinder <terra@diku.dk> * configure.in (gnome-print): Survive version "0.19cvs". * *: include <config.h>
-