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
2d376b53
Commit
2d376b53
authored
13 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Patches
Plain Diff
#6046: Fix addressbook factory static initialization of member addrbook
parent
1a4f38db
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sflphone-client-gnome/src/contacts/addrbookfactory.c
+2
-2
2 additions, 2 deletions
sflphone-client-gnome/src/contacts/addrbookfactory.c
sflphone-client-gnome/src/imwindow.c
+2
-2
2 additions, 2 deletions
sflphone-client-gnome/src/imwindow.c
with
4 additions
and
4 deletions
sflphone-client-gnome/src/contacts/addrbookfactory.c
+
2
−
2
View file @
2d376b53
...
...
@@ -37,7 +37,7 @@
static
void
handler_async_search
(
GList
*
hits
,
gpointer
user_data
);
AddrBookFactory
addressbookFactory
=
{
NULL
};
AddrBookFactory
addressbookFactory
=
{
.
addrbook
=
NULL
};
AddrBookFactory
*
abookfactory_get_factory
(
void
)
{
return
&
addressbookFactory
;
...
...
@@ -51,7 +51,7 @@ void abookfactory_init_factory() {
abookfactory_load_module
(
&
addressbookFactory
);
}
void
abookfactory_scan_directory
(
AddrBookFactory
*
factory
)
{
void
abookfactory_scan_directory
(
AddrBookFactory
*
factory
UNUSED
)
{
}
...
...
This diff is collapsed.
Click to expand it.
sflphone-client-gnome/src/imwindow.c
+
2
−
2
View file @
2d376b53
...
...
@@ -177,8 +177,8 @@ im_window_add (GtkWidget *widget)
gint
im_window_get_nb_tabs
()
{
if
(
im_notebook
)
return
gtk_notebook_get_n_pages
(
im_notebook
);
if
(
im_notebook
!=
NULL
)
return
gtk_notebook_get_n_pages
(
GTK_NOTEBOOK
(
im_notebook
)
)
;
else
return
0
;
}
...
...
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