Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gnumeric
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
375
Issues
375
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gnumeric
Commits
39eadf89
Commit
39eadf89
authored
Sep 20, 1999
by
Jody Goldberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Tweak the pixels/inch ratio for XL object import.
- Remove some dead prototypes.
parent
5d273292
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
9 deletions
+19
-9
ChangeLog-2000-02-23
ChangeLog-2000-02-23
+6
-0
NEWS
NEWS
+1
-0
OChangeLog-2000-02-23
OChangeLog-2000-02-23
+6
-0
plugins/excel/ms-obj.c
plugins/excel/ms-obj.c
+6
-2
src/cell.h
src/cell.h
+0
-7
No files found.
ChangeLog-2000-02-23
View file @
39eadf89
1999-09-20 Jody Goldberg <jgoldberg@home.com>
* src/cell.h (cell_deep_thaw_dependencies,
cell_deep_freeze_dependencies) : Remove non-existant
prototypes.
1999-09-19 Jukka-Pekka Iivonen <iivonen@iki.fi>
* src/functions/fn-stat.c: Implemented PERCENTILE() function.
...
...
NEWS
View file @
39eadf89
...
...
@@ -3,6 +3,7 @@ Gnumeric 0.36
Jody:
* Improve selection to correctly handle overlapping ranges.
* Improve XL import of 'escher' stream for pictures and objects.
* Enabled import of XL objects by default.
Jukka:
* Major clean up to the documentation of functions.
...
...
OChangeLog-2000-02-23
View file @
39eadf89
1999-09-20 Jody Goldberg <jgoldberg@home.com>
* src/cell.h (cell_deep_thaw_dependencies,
cell_deep_freeze_dependencies) : Remove non-existant
prototypes.
1999-09-19 Jukka-Pekka Iivonen <iivonen@iki.fi>
* src/functions/fn-stat.c: Implemented PERCENTILE() function.
...
...
plugins/excel/ms-obj.c
View file @
39eadf89
...
...
@@ -115,14 +115,18 @@ ms_parse_object_anchor (int anchor[4],
for
(
i
=
0
;
i
<
4
;
++
i
)
{
guint16
const
pos
=
MS_OLE_GET_GUINT16
(
data
+
4
*
i
);
float
margin
=
(
MS_OLE_GET_GUINT16
(
data
+
4
*
i
+
2
)
/
(
1024
.
/
72
.));
/* FIXME : we are slightly off. Tweak the pixels/inch ratio
* to make this come out on my screen for pic.xls.
* 66 pixels/inch seems correct ???
*/
float
margin
=
(
MS_OLE_GET_GUINT16
(
data
+
4
*
i
+
2
)
/
(
1024
.
/
66
.));
/* FIXME : we are slightly off. What about margins ? */
float
const
tmp
=
(
i
&
1
)
/* odds are rows */
?
sheet_row_get_unit_distance
(
sheet
,
0
,
pos
)
:
sheet_col_get_unit_distance
(
sheet
,
0
,
pos
);
#ifndef NO_DEBUG_EXCEL
if
(
ms_excel_read_debug
>
1
)
{
printf
(
"zoom = %f;
\n
"
,
zoom
);
printf
(
"%f units (%d pixels) from "
,
margin
,
(
int
)(
zoom
*
margin
));
if
(
i
&
1
)
...
...
src/cell.h
View file @
39eadf89
...
...
@@ -185,13 +185,6 @@ void cell_freeze_redraws (void);
void
cell_deep_thaw_redraws
(
void
);
void
cell_deep_freeze_redraws
(
void
);
/*
* Optimizations to stop any queueing of dependencies.
*/
extern
int
dependencies_deep_frozen
;
void
cell_deep_thaw_dependencies
(
void
);
void
cell_deep_freeze_dependencies
(
void
);
/*
* Routines used to lookup which cells displays on a given column
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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