Fixed a compile error.

This commit is contained in:
Chris Lahey 1998-07-10 22:33:31 +00:00
parent e86a3876c6
commit 9718b60e4f
2 changed files with 20 additions and 5 deletions

View File

@ -1,6 +1,21 @@
/* docindexif.c - Interface file for the docindex for gimp.
*
* Copyright (C) 1998 Chris Lahey.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "docindex.h"
#include "docindex_interface.h"
#include "docindexif.h"
void
raise_if_match( gpointer data, gpointer user_data )

View File

@ -1,4 +1,4 @@
/* docindex_interface.h - Interface file for the docindex for gimp.
/* docindexif.h - Interface file for the docindex for gimp.
*
* Copyright (C) 1998 Chris Lahey.
*
@ -13,8 +13,8 @@
* GNU General Public License for more details.
*/
#ifndef __DOCINDEX_INTERFACE_H__
#define __DOCINDEX_INTERFACE_H__
#ifndef __DOCINDEXIF_H__
#define __DOCINDEXIF_H__
#include <ctype.h>
@ -46,4 +46,4 @@ struct bool_char_pair
gchar *string;
};
#endif /* __DOCINDEX_INTERFACE_H__ */
#endif /* __DOCINDEXIF_H__ */