diff options
author | Johan Dahlin <johan@gnome.org> | 2004-03-15 16:32:54 +0000 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2004-03-15 16:32:54 +0000 |
commit | 5acffea623eaa95469a8fb77260c85240c6c0a41 (patch) | |
tree | 5d1eb5b3c6cbe7ff7888cfe0b2f972f7e509e99d /gst/debug/gstnavigationtest.h | |
parent | f878cc16402dcc70f31861bb120f435f3157c518 (diff) |
*.h: Revert indenting
Original commit message from CVS:
* *.h: Revert indenting
Diffstat (limited to 'gst/debug/gstnavigationtest.h')
-rw-r--r-- | gst/debug/gstnavigationtest.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gst/debug/gstnavigationtest.h b/gst/debug/gstnavigationtest.h index 00d3e6d1..61798c93 100644 --- a/gst/debug/gstnavigationtest.h +++ b/gst/debug/gstnavigationtest.h @@ -28,6 +28,7 @@ G_BEGIN_DECLS + #define GST_TYPE_NAVIGATIONTEST \ (gst_navigationtest_get_type()) #define GST_NAVIGATIONTEST(obj) \ @@ -38,23 +39,24 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NAVIGATIONTEST)) #define GST_IS_NAVIGATIONTEST_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NAVIGATIONTEST)) + typedef struct _GstNavigationtest GstNavigationtest; typedef struct _GstNavigationtestClass GstNavigationtestClass; -struct _GstNavigationtest -{ +struct _GstNavigationtest { GstVideofilter videofilter; double x; double y; }; -struct _GstNavigationtestClass -{ +struct _GstNavigationtestClass { GstVideofilterClass parent_class; }; -GType gst_navigationtest_get_type (void); +GType gst_navigationtest_get_type(void); G_END_DECLS + #endif /* __GST_NAVIGATIONTEST_H__ */ + |