Skip to content
Snippets Groups Projects
Commit 5ff27420 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #5949: show_preferences_dialog returns a success value

No caller checks it though.
parent b7b5b3aa
Branches
Tags
No related merge requests found
...@@ -341,7 +341,7 @@ selection_changed_cb (GtkIconView *view, gpointer user_data UNUSED) ...@@ -341,7 +341,7 @@ selection_changed_cb (GtkIconView *view, gpointer user_data UNUSED)
/** /**
* Show configuration window with tabs * Show configuration window with tabs
*/ */
void guint
show_preferences_dialog () show_preferences_dialog ()
{ {
GtkDialog * dialog; GtkDialog * dialog;
...@@ -429,6 +429,7 @@ show_preferences_dialog () ...@@ -429,6 +429,7 @@ show_preferences_dialog ()
dialogOpen = FALSE; dialogOpen = FALSE;
gtk_widget_destroy (GTK_WIDGET (dialog)); gtk_widget_destroy (GTK_WIDGET (dialog));
return result;
} }
......
...@@ -107,7 +107,7 @@ GtkWidget * create_recording_settings(); ...@@ -107,7 +107,7 @@ GtkWidget * create_recording_settings();
/** /**
* Display the main configuration window * Display the main configuration window
*/ */
void show_preferences_dialog(); guint show_preferences_dialog();
void preferences_dialog_set_stun_visible(); void preferences_dialog_set_stun_visible();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment