Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
725a4b9f
Commit
725a4b9f
authored
15 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Patches
Plain Diff
[#2383] Fix Gtk-Critical when checking STUN
parent
7bc3ca77
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sflphone-client-gnome/src/config/accountconfigdialog.c
+2
-3
2 additions, 3 deletions
sflphone-client-gnome/src/config/accountconfigdialog.c
with
2 additions
and
3 deletions
sflphone-client-gnome/src/config/accountconfigdialog.c
+
2
−
3
View file @
725a4b9f
...
...
@@ -486,11 +486,12 @@ static set_published_addr_manually_cb(GtkWidget * widget, gpointer data UNUSED)
static
use_stun_cb
(
GtkWidget
*
widget
,
gpointer
data
UNUSED
)
{
if
(
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
)))
{
DEBUG
(
"Showing stun options"
);
DEBUG
(
"Showing stun options
, hiding Local/Published info
"
);
gtk_widget_show
(
stunServerLabel
);
gtk_widget_show
(
stunServerEntry
);
gtk_widget_set_sensitive
(
sameAsLocalRadioButton
,
FALSE
);
gtk_widget_set_sensitive
(
publishedAddrRadioButton
,
FALSE
);
DEBUG
(
"Problem occurs here"
);
gtk_widget_hide
(
publishedAddressLabel
);
gtk_widget_hide
(
publishedPortLabel
);
gtk_widget_hide
(
publishedAddressEntry
);
...
...
@@ -875,8 +876,6 @@ GtkWidget * create_advanced_tab(account_t **a)
gtk_widget_show_all
(
ret
);
use_stun_cb
(
GTK_WIDGET
(
useStunCheckBox
),
NULL
);
publishedAddressLabel
=
gtk_label_new_with_mnemonic
(
_
(
"Published address"
));
gtk_table_attach_defaults
(
GTK_TABLE
(
table
),
publishedAddressLabel
,
0
,
1
,
5
,
6
);
gtk_misc_set_alignment
(
GTK_MISC
(
publishedAddressLabel
),
0
,
0
.
5
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment