don't mix tabs and spaces

Original commit message from CVS:
don't mix tabs and spaces
This commit is contained in:
Thomas Vander Stichele 2004-03-15 19:32:27 +00:00 committed by Tim-Philipp Müller
parent 44f714a5fd
commit f88ab240e5
2 changed files with 155 additions and 151 deletions

View file

@ -106,6 +106,7 @@ gst_jack_get_type (void)
0,
NULL,
};
jack_type =
g_type_register_static (GST_TYPE_ELEMENT, "GstJack", &jack_info, 0);
}
@ -129,6 +130,7 @@ gst_jack_sink_get_type (void)
0,
(GInstanceInitFunc) gst_jack_init,
};
jack_type =
g_type_register_static (GST_TYPE_JACK, "GstJackSink", &jack_info, 0);
}
@ -152,6 +154,7 @@ gst_jack_src_get_type (void)
0,
(GInstanceInitFunc) gst_jack_init,
};
jack_type =
g_type_register_static (GST_TYPE_JACK, "GstJackSrc", &jack_info, 0);
}

View file

@ -64,6 +64,7 @@ gst_jack_bin_get_type (void)
0,
(GInstanceInitFunc) gst_jack_bin_init,
};
jack_bin_type =
g_type_register_static (GST_TYPE_BIN, "GstJackBin", &jack_bin_info, 0);
}