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
aa423f94
Commit
aa423f94
authored
Jan 22, 2000
by
Arturo Espinosa
Browse files
Make it compile
parent
7c0beb4b
Changes
5
Hide whitespace changes
Inline
Side-by-side
ChangeLog-2000-02-23
View file @
aa423f94
2000-01-18 Miguel de Icaza <miguel@gnu.org>
* src/clipboard.c (x_selection_to_cell_region): Do not hardcode
',' as a number separator. Use the locale information to select
the proper separator.
2000-01-16 Miguel de Icaza <miguel@gnu.org>
* src/sheet.c (sheet_set_current_value): Change the logic to
always shutdown gracefully.
2000-01-21 Jody Goldberg <jgoldberg@home.com>
* src/dialogs/dialog-printer-setup.c (do_hf_config) : Take a Workbook.
...
...
OChangeLog-2000-02-23
View file @
aa423f94
2000-01-18 Miguel de Icaza <miguel@gnu.org>
* src/clipboard.c (x_selection_to_cell_region): Do not hardcode
',' as a number separator. Use the locale information to select
the proper separator.
2000-01-16 Miguel de Icaza <miguel@gnu.org>
* src/sheet.c (sheet_set_current_value): Change the logic to
always shutdown gracefully.
2000-01-21 Jody Goldberg <jgoldberg@home.com>
* src/dialogs/dialog-printer-setup.c (do_hf_config) : Take a Workbook.
...
...
plugins/Makefile.am
View file @
aa423f94
# Do not build by default until the libtool problems with
# a static libpython are resolved.
#
if WITH_PYTHON
#
PYTHON = python
#
else
#
PYTHON =
#
endif
if
WITH_PYTHON
PYTHON
=
python
else
PYTHON
=
endif
if
WITH_PERL
PERL
=
perl
...
...
plugins/python/Makefile.am
View file @
aa423f94
...
...
@@ -10,7 +10,8 @@ GNUMERIC_SRC_DIR = $(srcdir)/../../src
#
plugindir
=
$(libdir)
/gnumeric/plugins/
$(VERSION)
plugin_LTLIBRARIES
=
libgnum_python.la
#plugin_LTLIBRARIES = libgnum_python.la
noinst_LTLIBRARIES
=
libgnum_python.la
libgnum_python_la_SOURCES
=
python.c
...
...
src/clipboard.c
View file @
aa423f94
...
...
@@ -232,7 +232,7 @@ x_selection_to_cell_region (char const * data, int len)
int
rows
=
0
;
GList
*
list
=
NULL
;
char
const
*
p
=
data
;
gboolean
not_comma_decimal
,
not_semicolon_decimal
;
gboolean
not_comma_decimal
,
not_semicolon_decimal
;
/* Points to the locale information for number display */
static
struct
lconv
*
lc
=
NULL
;
...
...
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