aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-download.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-01-09 03:41:47 +0800
committerChristian Persch <chpe@src.gnome.org>2005-01-09 03:41:47 +0800
commit4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5 (patch)
treea7b7208fd06e53ced8828d0defb893a4c2820625 /embed/ephy-download.h
parentc4d4c87e3be705bbafaafa5f75d4141a9994db48 (diff)
downloadgsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.tar
gsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.tar.gz
gsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.tar.bz2
gsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.tar.lz
gsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.tar.xz
gsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.tar.zst
gsoc2013-epiphany-4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5.zip
Make all structs prefixed by _.
2005-01-08 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-cookie-manager.h: * embed/ephy-download.c: * embed/ephy-download.h: * embed/ephy-embed-dialog.c: * embed/ephy-embed-dialog.h: * embed/ephy-embed-persist.c: * embed/ephy-embed-persist.h: * embed/ephy-encodings.c: * embed/ephy-encodings.h: * embed/ephy-favicon-cache.c: * embed/ephy-favicon-cache.h: * embed/ephy-history.c: * embed/ephy-history.h: * embed/ephy-password-manager.h: * embed/ephy-permission-manager.h: * lib/ephy-file-chooser.c: * lib/ephy-file-chooser.h: * lib/ephy-node-db.c: * lib/ephy-node-db.h: * lib/ephy-node-filter.c: * lib/ephy-node-filter.h: * lib/ephy-node.c: * lib/ephy-node.h: * lib/widgets/ephy-node-view.c: * lib/widgets/ephy-node-view.h: * lib/widgets/ephy-search-entry.c: * lib/widgets/ephy-search-entry.h: * lib/widgets/ephy-spinner.c: * lib/widgets/ephy-spinner.h: * lib/widgets/ephy-tree-model-node.c: * lib/widgets/ephy-tree-model-node.h: * lib/widgets/ephy-tree-model-sort.c: * lib/widgets/ephy-tree-model-sort.h: * lib/widgets/ephy-zoom-action.c: * lib/widgets/ephy-zoom-action.h: * src/bookmarks/ephy-bookmark-properties.c: * src/bookmarks/ephy-bookmark-properties.h: * src/bookmarks/ephy-bookmarks-editor.c: * src/bookmarks/ephy-bookmarks-editor.h: * src/bookmarks/ephy-bookmarks.c: * src/bookmarks/ephy-bookmarks.h: * src/bookmarks/ephy-bookmarksbar-model.c: * src/bookmarks/ephy-bookmarksbar-model.h: * src/bookmarks/ephy-bookmarksbar.c: * src/bookmarks/ephy-bookmarksbar.h: * src/bookmarks/ephy-new-bookmark.c: * src/bookmarks/ephy-new-bookmark.h: * src/bookmarks/ephy-topics-selector.c: * src/bookmarks/ephy-topics-selector.h: * src/ephy-completion-model.c: * src/ephy-completion-model.h: * src/ephy-encoding-dialog.c: * src/ephy-encoding-dialog.h: * src/ephy-history-window.c: * src/ephy-history-window.h: Make all structs prefixed by _.
Diffstat (limited to 'embed/ephy-download.h')
-rw-r--r--embed/ephy-download.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/embed/ephy-download.h b/embed/ephy-download.h
index 64d483b2a..2614f4e8e 100644
--- a/embed/ephy-download.h
+++ b/embed/ephy-download.h
@@ -33,9 +33,9 @@ G_BEGIN_DECLS
#define EPHY_IS_DOWNLOAD_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_DOWNLOAD))
#define EPHY_DOWNLOAD_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_DOWNLOAD, EphyDownloadClass))
-typedef struct EphyDownload EphyDownload;
-typedef struct EphyDownloadClass EphyDownloadClass;
-typedef struct EphyDownloadPrivate EphyDownloadPrivate;
+typedef struct _EphyDownload EphyDownload;
+typedef struct _EphyDownloadClass EphyDownloadClass;
+typedef struct _EphyDownloadPrivate EphyDownloadPrivate;
typedef enum
{
@@ -46,7 +46,7 @@ typedef enum
EPHY_DOWNLOAD_FAILED
} EphyDownloadState;
-struct EphyDownload
+struct _EphyDownload
{
GObject parent;
@@ -54,7 +54,7 @@ struct EphyDownload
EphyDownloadPrivate *priv;
};
-struct EphyDownloadClass
+struct _EphyDownloadClass
{
GObjectClass parent_class;