mirror of https://github.com/GNOME/gimp.git
minor unused variable warning cleanup
* app/interface.c: minor unused variable warning cleanup * plug-ins/bumpmap/bumpmap.c: another warning cleanup * plug-ins/flame/flame.c: time(NULL) instead of time(0) * plug-ins/gpc/Makefile.am * plug-ins/megawidget/Makefile.am: install in $libdir instead of $gimpplugindir since they *are* libs. Some archs try to exec them, and it barfs -Yosh
This commit is contained in:
parent
14560bb94c
commit
83e02a396f
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
Sat Jun 27 23:28:26 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/interface.c: minor unused variable warning cleanup
|
||||
|
||||
* plug-ins/bumpmap/bumpmap.c: another warning cleanup
|
||||
|
||||
* plug-ins/flame/flame.c: time(NULL) instead of time(0)
|
||||
|
||||
* plug-ins/gpc/Makefile.am
|
||||
* plug-ins/megawidget/Makefile.am: install in $libdir instead
|
||||
of $gimpplugindir since they *are* libs. Some archs try to
|
||||
exec them, and it barfs
|
||||
|
||||
Sun Jun 28 00:23:52 EDT 1998 Adrian Likins <adrian@gimp.org>
|
||||
|
||||
* app/tile.c : fix from Scott Goehring for a thread deadlock
|
||||
|
|
3
TODO
3
TODO
|
@ -410,4 +410,7 @@ gradient map layer/paint mode
|
|||
|
||||
map values from current gradient to value/intensity
|
||||
|
||||
script-fu
|
||||
|
||||
proper font selector instead of typing the silly thing in
|
||||
maybe a color history too...
|
||||
|
|
|
@ -240,8 +240,6 @@ create_color_area (GtkWidget *parent)
|
|||
GdkPixmap *
|
||||
create_tool_pixmap (GtkWidget *parent, ToolType type)
|
||||
{
|
||||
int i;
|
||||
|
||||
/*
|
||||
* FIXME this really should be dones without using the #defined tool names
|
||||
* but it should work this way for now
|
||||
|
|
|
@ -240,8 +240,6 @@ create_color_area (GtkWidget *parent)
|
|||
GdkPixmap *
|
||||
create_tool_pixmap (GtkWidget *parent, ToolType type)
|
||||
{
|
||||
int i;
|
||||
|
||||
/*
|
||||
* FIXME this really should be dones without using the #defined tool names
|
||||
* but it should work this way for now
|
||||
|
|
|
@ -240,8 +240,6 @@ create_color_area (GtkWidget *parent)
|
|||
GdkPixmap *
|
||||
create_tool_pixmap (GtkWidget *parent, ToolType type)
|
||||
{
|
||||
int i;
|
||||
|
||||
/*
|
||||
* FIXME this really should be dones without using the #defined tool names
|
||||
* but it should work this way for now
|
||||
|
|
|
@ -87,6 +87,7 @@
|
|||
|
||||
#include <math.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
|
@ -87,6 +87,7 @@
|
|||
|
||||
#include <math.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
|
@ -171,7 +171,7 @@ static void run(char *name, int n_params, GParam * param, int *nreturn_vals,
|
|||
*nreturn_vals = 1;
|
||||
*return_vals = values;
|
||||
|
||||
SRAND_FUNC (time(0));
|
||||
SRAND_FUNC (time(NULL));
|
||||
|
||||
run_mode = param[0].data.d_int32;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlibdir = $(libdir)
|
||||
|
||||
pluginlib_LIBRARIES = libgpc.a
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
pluginlibdir = $(libdir)
|
||||
|
||||
pluginlib_LIBRARIES = libmegawidget.a
|
||||
|
||||
|
@ -37,4 +37,3 @@ files:
|
|||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue