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
68775a25
Commit
68775a25
authored
Oct 03, 1999
by
Jody Goldberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Some minor fixes to handle attemptingto open a directory.
- Ensure that config.h is included in all the XL layer files.
parent
ee98c351
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
43 additions
and
14 deletions
+43
-14
plugins/excel/ChangeLog
plugins/excel/ChangeLog
+11
-0
plugins/excel/boot.c
plugins/excel/boot.c
+6
-4
plugins/excel/gnumeric-chart.c
plugins/excel/gnumeric-chart.c
+1
-0
plugins/excel/libole2/ChangeLog
plugins/excel/libole2/ChangeLog
+6
-0
plugins/excel/libole2/ms-ole.c
plugins/excel/libole2/ms-ole.c
+3
-1
plugins/excel/ms-biff.c
plugins/excel/ms-biff.c
+2
-1
plugins/excel/ms-chart.c
plugins/excel/ms-chart.c
+3
-2
plugins/excel/ms-escher.c
plugins/excel/ms-escher.c
+1
-1
plugins/excel/ms-excel-read.c
plugins/excel/ms-excel-read.c
+2
-1
plugins/excel/ms-excel-write.c
plugins/excel/ms-excel-write.c
+1
-1
plugins/excel/ms-formula-read.c
plugins/excel/ms-formula-read.c
+2
-1
plugins/excel/ms-formula-write.c
plugins/excel/ms-formula-write.c
+3
-1
plugins/excel/ms-obj.c
plugins/excel/ms-obj.c
+1
-0
plugins/excel/ms-summary.c
plugins/excel/ms-summary.c
+1
-1
No files found.
plugins/excel/ChangeLog
View file @
68775a25
1999-10-03 Jody Goldberg <jgoldberg@home.com>
* boot.c (excel_probe) : Only free the MsOle object if it
was created successfully.
1999-10-02 Jody Goldberg <jgoldberg@home.com>
* *.c : Ensure that we include config.h first.
* *.[ch] : Update and add Copyright notices.
1999-09-29 Jody Goldberg <jgoldberg@home.com>
* ms-excel-read.c (ms_excel_read_cell:MULBLANK) : Insert blanks in
...
...
plugins/excel/boot.c
View file @
68775a25
...
...
@@ -8,6 +8,7 @@
**/
#include <stdio.h>
#include <sys/stat.h>
#include <config.h>
#include <gnome.h>
#include "gnumeric.h"
...
...
@@ -25,12 +26,13 @@ static gboolean
excel_probe
(
const
char
*
filename
)
{
MsOle
*
f
;
MsOleErr
result
;
result
=
ms_ole_open
(
&
f
,
filename
);
ms_ole_destroy
(
&
f
);
if
(
ms_ole_open
(
&
f
,
filename
)
==
MS_OLE_ERR_OK
)
{
ms_ole_destroy
(
&
f
);
return
TRUE
;
}
return
result
==
MS_OLE_ERR_OK
;
return
FALSE
;
}
static
gboolean
...
...
plugins/excel/gnumeric-chart.c
View file @
68775a25
...
...
@@ -9,6 +9,7 @@
* (C) 1999 Jody Goldberg
**/
#include <config.h>
#include "gnumeric-chart.h"
GnumericChart
*
...
...
plugins/excel/libole2/ChangeLog
View file @
68775a25
1999-10-03 Jody Goldberg <jgoldberg@home.com>
* ms-ole.c (ms_ole_destroy) : Quick and dirty test to
avoid freeing the magic ptr on exit when we have a
failure during intialization.
1999-09-30 Arturo Tena <arturo@directmail.org>
* ms-ole.c: Cleanup the code.
...
...
plugins/excel/libole2/ms-ole.c
View file @
68775a25
...
...
@@ -1520,7 +1520,9 @@ ms_ole_destroy (MsOle **ptr)
if
(
f
->
dirty
)
ms_ole_cleanup
(
f
);
if
(
f
->
ole_mmap
)
{
if
(
f
->
mem
==
(
void
*
)
0xdeadbeef
)
f
->
mem
=
NULL
;
else
if
(
f
->
ole_mmap
)
{
munmap
(
f
->
mem
,
f
->
length
);
}
else
{
guint32
i
;
...
...
plugins/excel/ms-biff.c
View file @
68775a25
...
...
@@ -16,8 +16,9 @@
#include <malloc.h>
#include <assert.h>
#include <ctype.h>
#include <glib.h>
#include <config.h>
#include <glib.h>
#include "ms-ole.h"
#include "ms-biff.h"
#include "biff-types.h"
...
...
plugins/excel/ms-chart.c
View file @
68775a25
...
...
@@ -7,6 +7,9 @@
* (C) 1999 Jody Goldberg
**/
#include <stdio.h>
#include <config.h>
#include "excel.h"
#include "ms-chart.h"
#include "ms-formula-read.h"
...
...
@@ -15,8 +18,6 @@
#include "utils.h"
#include "gnumeric-chart.h"
#include <stdio.h>
/* #define NO_DEBUG_EXCEL */
extern
int
ms_excel_chart_debug
;
...
...
plugins/excel/ms-escher.c
View file @
68775a25
...
...
@@ -12,7 +12,7 @@
#include <stdio.h>
#include
"config.h"
#include
<config.h>
#include "ms-escher.h"
#include "escher-types.h"
#include "biff-types.h"
...
...
plugins/excel/ms-excel-read.c
View file @
68775a25
...
...
@@ -8,13 +8,14 @@
* (C) 1998, 1999 Michael Meeks, Jody Goldberg
**/
#include <config.h>
#include "ms-formula-read.h"
#include "ms-excel-read.h"
#include "ms-obj.h"
#include "ms-chart.h"
#include "gnumeric-chart.h"
#include "ms-escher.h"
#include "print-info.h"
#include "selection.h"
#include "utils.h"
/* for cell_name */
...
...
plugins/excel/ms-excel-write.c
View file @
68775a25
...
...
@@ -13,11 +13,11 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <config.h>
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#include <config.h>
#include <gnome.h>
#include "gnumeric.h"
...
...
plugins/excel/ms-formula-read.c
View file @
68775a25
...
...
@@ -9,8 +9,9 @@
#include <fcntl.h>
#include <assert.h>
#include <config.h>
#include <stdio.h>
#include <config.h>
#include <gnome.h>
#include "gnumeric.h"
#include "func.h"
...
...
plugins/excel/ms-formula-write.c
View file @
68775a25
...
...
@@ -10,9 +10,11 @@
#include <fcntl.h>
#include <assert.h>
#include <config.h>
#include <stdio.h>
#include <config.h>
#include <gnome.h>
#include "gnumeric.h"
#include "func.h"
...
...
plugins/excel/ms-obj.c
View file @
68775a25
...
...
@@ -8,6 +8,7 @@
* (C) 1998, 1999 Jody Goldberg, Michael Meeks
**/
#include <config.h>
#include "ms-obj.h"
#include "ms-chart.h"
#include "ms-escher.h"
...
...
plugins/excel/ms-summary.c
View file @
68775a25
...
...
@@ -9,8 +9,8 @@
#include <stdio.h>
#include <config.h>
#include <glib.h>
#include "ms-ole.h"
#include "ms-ole-summary.h"
#include "ms-biff.h"
...
...
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