> I mean 'make it look like the rest of LyX source'.
>
> And yes, using ANSI C instead of K&R is a step in the right direction.
Doing it... to make g++ understand the code.
Bo
On Tue, Aug 21, 2007 at 02:06:14PM -0500, Bo Peng wrote:
> > Do that. But also adjust code style.
>
> You mean changing 'func(a) int a' to 'func(int a)'?
I mean 'make it look like the rest of LyX source'.
And yes, using ANSI C instead of K&R is a step in the right direction.
Andre'
> Do that. But also adjust code style.
You mean changing 'func(a) int a' to 'func(int a)'?
Bo
On Tue, Aug 21, 2007 at 08:27:39AM -0500, Bo Peng wrote:
> > I am also wondering if we can add zip/contrib/minizip
> > (four source files) to lyx/svn to make our life a bit easier.
>
> How about adding these four minizip files to src/support/minizip?
Do that. But also adjust code style.
Andre'
> That seems the logical thing to do.
Done.
Bo
Bo Peng wrote:
I am also wondering if we can add zip/contrib/minizip
(four source files) to lyx/svn to make our life a bit easier.
How about adding these four minizip files to src/support/minizip?
That seems the logical thing to do.
Abdel.
> I am also wondering if we can add zip/contrib/minizip
> (four source files) to lyx/svn to make our life a bit easier.
How about adding these four minizip files to src/support/minizip?
Bo
This is the first of the embedding patch series. It adds functions
zipFiles and unzipToDir to src/support/filetools.[h|cpp]. This allows
the handling of zipped .lyx file.
src/support/lyxlib.[h|cpp]:
add function makedir that recursively create a directory. Function
adapted from zlib/contrib/mi