mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-01 09:43:55 +00:00
codecanalyzer: minor style fix
This commit is contained in:
parent
1f58db52bf
commit
a26f4463f1
1 changed files with 9 additions and 9 deletions
|
@ -180,7 +180,7 @@ fill_tree_store (gpointer data, gpointer user_data)
|
||||||
}
|
}
|
||||||
|
|
||||||
static GtkWidget *
|
static GtkWidget *
|
||||||
create_tree_view ()
|
create_tree_view (void)
|
||||||
{
|
{
|
||||||
GtkTreeViewColumn *col;
|
GtkTreeViewColumn *col;
|
||||||
GtkCellRenderer *renderer;
|
GtkCellRenderer *renderer;
|
||||||
|
@ -456,7 +456,7 @@ create_image (int frame_num)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
analyzer_create_thumbnails ()
|
analyzer_create_thumbnails (void)
|
||||||
{
|
{
|
||||||
GtkWidget *image;
|
GtkWidget *image;
|
||||||
guint i;
|
guint i;
|
||||||
|
@ -478,7 +478,7 @@ analyzer_create_thumbnails ()
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
analyzer_ui_destroy ()
|
analyzer_ui_destroy (void)
|
||||||
{
|
{
|
||||||
gtk_widget_destroy (ui->main_window);
|
gtk_widget_destroy (ui->main_window);
|
||||||
|
|
||||||
|
@ -625,7 +625,7 @@ analyzer_display_general_stream_info (GstAnalyzerVideoInfo * analyzer_vinfo)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
reset_analyzer_ui ()
|
reset_analyzer_ui (void)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (ui->hbox1_in_vbox2) {
|
if (ui->hbox1_in_vbox2) {
|
||||||
|
@ -797,13 +797,13 @@ callback_stream_chooser_new_stream (GtkFileChooserButton * widget,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
menu_quit_callback ()
|
menu_quit_callback (void)
|
||||||
{
|
{
|
||||||
gtk_widget_destroy (ui->main_window);
|
gtk_widget_destroy (ui->main_window);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
menu_about_callback ()
|
menu_about_callback (void)
|
||||||
{
|
{
|
||||||
GFile *license_file;
|
GFile *license_file;
|
||||||
GdkPixbuf *logo;
|
GdkPixbuf *logo;
|
||||||
|
@ -847,7 +847,7 @@ menu_about_callback ()
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
menu_help_callback ()
|
menu_help_callback (void)
|
||||||
{
|
{
|
||||||
GtkWidget *dialog;
|
GtkWidget *dialog;
|
||||||
dialog = gtk_message_dialog_new (GTK_WINDOW (ui->main_window),
|
dialog = gtk_message_dialog_new (GTK_WINDOW (ui->main_window),
|
||||||
|
@ -880,7 +880,7 @@ static GtkActionEntry entries_actiongroup[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
analyzer_ui_init ()
|
analyzer_ui_init (void)
|
||||||
{
|
{
|
||||||
GtkActionGroup *action_group;
|
GtkActionGroup *action_group;
|
||||||
char *path;
|
char *path;
|
||||||
|
@ -957,7 +957,7 @@ analyzer_ui_init ()
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
analyzer_create_dirs ()
|
analyzer_create_dirs (void)
|
||||||
{
|
{
|
||||||
const gchar *user_cache_dir;
|
const gchar *user_cache_dir;
|
||||||
gchar *xml_files_path = NULL;
|
gchar *xml_files_path = NULL;
|
||||||
|
|
Loading…
Reference in a new issue