Fixed a copy-and-paste error with the dates of my commits. removed a few
* ChangeLog: Fixed a copy-and-paste error with the dates of my commits. * plug-ins/gimpressionist/ppmtool.c: removed a few commented-out asserts, and the function that was used to implement them.
This commit is contained in:
10
ChangeLog
10
ChangeLog
@ -1,3 +1,9 @@
|
|||||||
|
2004-07-19 Shlomi Fish <shlomif@iglu.org.il>
|
||||||
|
|
||||||
|
* ChangeLog: Fixed a copy-and-paste error with the dates of my commits.
|
||||||
|
* plug-ins/gimpressionist/ppmtool.c: removed a few commented-out
|
||||||
|
asserts, and the function that was used to implement them.
|
||||||
|
|
||||||
2004-07-19 Michael Natterer <mitch@gimp.org>
|
2004-07-19 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/widgets/widgets-types.h: reordered and commented to match
|
* app/widgets/widgets-types.h: reordered and commented to match
|
||||||
@ -22,12 +28,12 @@
|
|||||||
* app/core/core-types.h: reordered stuff to match the order in the
|
* app/core/core-types.h: reordered stuff to match the order in the
|
||||||
API docs (makes keeping stuff in sync much easier).
|
API docs (makes keeping stuff in sync much easier).
|
||||||
|
|
||||||
2004-07-17 Shlomi Fish <shlomif@iglu.org.il>
|
2004-07-19 Shlomi Fish <shlomif@iglu.org.il>
|
||||||
|
|
||||||
* plug-ins/gimpressionist/repaint.c: replaced a few if's+destructors
|
* plug-ins/gimpressionist/repaint.c: replaced a few if's+destructors
|
||||||
pairs for ppm_ with just the destructors.
|
pairs for ppm_ with just the destructors.
|
||||||
|
|
||||||
2004-07-17 Shlomi Fish <shlomif@iglu.org.il>
|
2004-07-19 Shlomi Fish <shlomif@iglu.org.il>
|
||||||
|
|
||||||
* plug-ins/gimpressionist/repaint.c: normalized some identifiers of
|
* plug-ins/gimpressionist/repaint.c: normalized some identifiers of
|
||||||
repaint.c, and corrected some indentation there.
|
repaint.c, and corrected some indentation there.
|
||||||
|
@ -28,12 +28,6 @@ int readline(FILE *f, char *buffer, int len)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void fatal(char *s)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "%s\n", s);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ppm_kill(ppm_t *p)
|
void ppm_kill(ppm_t *p)
|
||||||
{
|
{
|
||||||
g_free(p->col);
|
g_free(p->col);
|
||||||
@ -270,9 +264,6 @@ void ppm_load(const char *fn, ppm_t *p)
|
|||||||
fprintf(stderr, "ppm_load: Unable to open file \"%s\"!\n", fn);
|
fprintf(stderr, "ppm_load: Unable to open file \"%s\"!\n", fn);
|
||||||
ppm_new(p, 10,10);
|
ppm_new(p, 10,10);
|
||||||
return;
|
return;
|
||||||
#if 0
|
|
||||||
fatal("Aborting!");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
readline(f, line, 200);
|
readline(f, line, 200);
|
||||||
@ -282,9 +273,6 @@ void ppm_load(const char *fn, ppm_t *p)
|
|||||||
printf( "ppm_load: File \"%s\" not PPM/PGM? (line=\"%s\")%c\n", fn, line, 7);
|
printf( "ppm_load: File \"%s\" not PPM/PGM? (line=\"%s\")%c\n", fn, line, 7);
|
||||||
ppm_new(p, 10,10);
|
ppm_new(p, 10,10);
|
||||||
return;
|
return;
|
||||||
#if 0
|
|
||||||
fatal("Aborting!");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
pgm = 1;
|
pgm = 1;
|
||||||
}
|
}
|
||||||
@ -296,9 +284,6 @@ void ppm_load(const char *fn, ppm_t *p)
|
|||||||
printf ("ppm_load: File \"%s\" not valid PPM/PGM? (line=\"%s\")%c\n", fn, line, 7);
|
printf ("ppm_load: File \"%s\" not valid PPM/PGM? (line=\"%s\")%c\n", fn, line, 7);
|
||||||
ppm_new(p, 10,10);
|
ppm_new(p, 10,10);
|
||||||
return;
|
return;
|
||||||
#if 0
|
|
||||||
fatal("Aborting!");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
p->col = g_malloc(p->height * p->width * 3);
|
p->col = g_malloc(p->height * p->width * 3);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user