diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-21 20:35:45 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-21 20:35:45 +0800 |
commit | 6d0925a6632ab79046b1d59b74d88f3b5bc39eae (patch) | |
tree | b4f488786c5cf5395421be6a3605b287985e760b /lib/ephy-filesystem-autocompletion.h | |
parent | 3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4 (diff) | |
download | gsoc2013-epiphany-6d0925a6632ab79046b1d59b74d88f3b5bc39eae.tar.gz gsoc2013-epiphany-6d0925a6632ab79046b1d59b74d88f3b5bc39eae.tar.zst gsoc2013-epiphany-6d0925a6632ab79046b1d59b74d88f3b5bc39eae.zip |
Remove fs autocompletion, we are a browser after all
2003-01-21 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/Makefile.am:
* lib/ephy-filesystem-autocompletion.c:
* lib/ephy-filesystem-autocompletion.h:
Remove fs autocompletion, we are a browser after all
Diffstat (limited to 'lib/ephy-filesystem-autocompletion.h')
-rw-r--r-- | lib/ephy-filesystem-autocompletion.h | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/lib/ephy-filesystem-autocompletion.h b/lib/ephy-filesystem-autocompletion.h deleted file mode 100644 index ec047282f..000000000 --- a/lib/ephy-filesystem-autocompletion.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (C) 2002 Ricardo Fernández Pascual - * - * 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_FILESYSTEM_AUTOCOMPLETION_H -#define EPHY_FILESYSTEM_AUTOCOMPLETION_H - -#include <glib-object.h> - -G_BEGIN_DECLS - -/* object forward declarations */ - -typedef struct _EphyFilesystemAutocompletion EphyFilesystemAutocompletion; -typedef struct _EphyFilesystemAutocompletionClass EphyFilesystemAutocompletionClass; -typedef struct _EphyFilesystemAutocompletionPrivate EphyFilesystemAutocompletionPrivate; - -/** - * FilesystemAutocompletion object - */ - -#define GUL_TYPE_FILESYSTEM_AUTOCOMPLETION (ephy_filesystem_autocompletion_get_type()) -#define GUL_FILESYSTEM_AUTOCOMPLETION(object) (G_TYPE_CHECK_INSTANCE_CAST((object), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION,\ - EphyFilesystemAutocompletion)) -#define GUL_FILESYSTEM_AUTOCOMPLETION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION,\ - EphyFilesystemAutocompletionClass)) -#define GUL_IS_FILESYSTEM_AUTOCOMPLETION(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION)) -#define GUL_IS_FILESYSTEM_AUTOCOMPLETION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION)) -#define GUL_FILESYSTEM_AUTOCOMPLETION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION,\ - EphyFilesystemAutocompletionClass)) - -struct _EphyFilesystemAutocompletionClass -{ - GObjectClass parent_class; - -}; - -struct _EphyFilesystemAutocompletion -{ - GObject parent_object; - EphyFilesystemAutocompletionPrivate *priv; -}; - -GType ephy_filesystem_autocompletion_get_type (void); -EphyFilesystemAutocompletion * ephy_filesystem_autocompletion_new (void); -void ephy_filesystem_autocompletion_set_base_dir (EphyFilesystemAutocompletion *fa, - const gchar *d); - -G_END_DECLS - -#endif |