aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am5
-rw-r--r--lib/ephy-state.c1
-rw-r--r--lib/ephy-types.h35
3 files changed, 2 insertions, 39 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 955be57ae..f442d34db 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -23,6 +23,7 @@ NOINST_H_FILES = \
ephy-file-helpers.h \
ephy-glade.h \
ephy-gui.h \
+ ephy-langs.h \
ephy-marshal.h \
ephy-node-filter.h \
ephy-node-common.h \
@@ -35,10 +36,8 @@ NOINST_H_FILES = \
INST_H_FILES = \
ephy-dialog.h \
- ephy-langs.h \
ephy-node.h \
- ephy-node-db.h \
- ephy-types.h
+ ephy-node-db.h
libephy_la_SOURCES = \
eel-gconf-extensions.c \
diff --git a/lib/ephy-state.c b/lib/ephy-state.c
index 822f9f393..c797d2211 100644
--- a/lib/ephy-state.c
+++ b/lib/ephy-state.c
@@ -22,7 +22,6 @@
#include "ephy-state.h"
#include "ephy-file-helpers.h"
#include "ephy-node-db.h"
-#include "ephy-types.h"
#include "ephy-node-common.h"
#include <string.h>
diff --git a/lib/ephy-types.h b/lib/ephy-types.h
deleted file mode 100644
index 70ce681e0..000000000
--- a/lib/ephy-types.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2000, 2001, 2002 Marco Pesenti Gritti
- *
- * 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.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef EPHY_TYPES_H
-#define EPHY_TYPES_H
-
-#include <glib.h>
-
-G_BEGIN_DECLS
-
-typedef enum
-{
- G_OK,
- G_FAILED,
- G_NOT_IMPLEMENTED
-} gresult;
-
-G_END_DECLS
-
-#endif