app: switch gimppaintcore-loops.c to C++

Ditto.
This commit is contained in:
Ell 2018-04-04 16:59:24 -04:00
parent c8d4c079a2
commit e8a14deecf
2 changed files with 6 additions and 1 deletions

View file

@ -60,7 +60,7 @@ libapppaint_a_sources = \
gimpmybrushsurface.h \
gimppaintcore.c \
gimppaintcore.h \
gimppaintcore-loops.c \
gimppaintcore-loops.cc \
gimppaintcore-loops.h \
gimppaintcore-stroke.c \
gimppaintcore-stroke.h \

View file

@ -20,6 +20,9 @@
#include <gegl.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
extern "C"
{
#include "paint-types.h"
#include "operations/layer-modes/gimp-layer-modes.h"
@ -436,3 +439,5 @@ mask_components_onto (GeglBuffer *src_buffer,
}
}
}
} /* extern "C" */