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
40eca111
Commit
40eca111
authored
11 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
gnome: remove useless calls to gtk_notebook_page_num
parent
e2e58668
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnome/src/config/accountconfigdialog.c
+0
-6
0 additions, 6 deletions
gnome/src/config/accountconfigdialog.c
with
0 additions
and
6 deletions
gnome/src/config/accountconfigdialog.c
+
0
−
6
View file @
40eca111
...
...
@@ -1438,19 +1438,16 @@ show_account_window(account_t *account, SFLPhoneClient *client, gboolean is_new)
/* General Settings */
GtkWidget
*
basic_tab
=
create_basic_tab
(
account
,
is_new
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
notebook
),
basic_tab
,
gtk_label_new
(
_
(
"Basic"
)));
gtk_notebook_page_num
(
GTK_NOTEBOOK
(
notebook
),
basic_tab
);
}
/* Audio Codecs */
GtkWidget
*
audiocodecs_tab
=
create_audiocodecs_configuration
(
account
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
notebook
),
audiocodecs_tab
,
gtk_label_new
(
_
(
"Audio"
)));
gtk_notebook_page_num
(
GTK_NOTEBOOK
(
notebook
),
audiocodecs_tab
);
#ifdef SFL_VIDEO
/* Video Codecs */
GtkWidget
*
videocodecs_tab
=
create_videocodecs_configuration
(
account
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
notebook
),
videocodecs_tab
,
gtk_label_new
(
_
(
"Video"
)));
gtk_notebook_page_num
(
GTK_NOTEBOOK
(
notebook
),
videocodecs_tab
);
#endif
// Do not need advanced or security one for the IP2IP account
...
...
@@ -1458,17 +1455,14 @@ show_account_window(account_t *account, SFLPhoneClient *client, gboolean is_new)
/* Advanced */
advanced_tab
=
create_advanced_tab
(
account
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
notebook
),
advanced_tab
,
gtk_label_new
(
_
(
"Advanced"
)));
gtk_notebook_page_num
(
GTK_NOTEBOOK
(
notebook
),
advanced_tab
);
/* Security */
security_tab
=
create_security_tab
(
account
,
client
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
notebook
),
security_tab
,
gtk_label_new
(
_
(
"Security"
)));
gtk_notebook_page_num
(
GTK_NOTEBOOK
(
notebook
),
security_tab
);
}
else
{
/* Custom tab for the IP to IP profile */
GtkWidget
*
ip_tab
=
create_direct_ip_calls_tab
(
account
);
gtk_notebook_prepend_page
(
GTK_NOTEBOOK
(
notebook
),
ip_tab
,
gtk_label_new
(
_
(
"Network"
)));
gtk_notebook_page_num
(
GTK_NOTEBOOK
(
notebook
),
ip_tab
);
}
// Emit signal to hide advanced and security tabs in case of IAX
...
...
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