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
66018b6e
Commit
66018b6e
authored
13 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Patches
Plain Diff
#6054: Fix addressbook plugin compilation warning
parent
2871f537
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
sflphone-plugins/configure.ac
+1
-1
1 addition, 1 deletion
sflphone-plugins/configure.ac
sflphone-plugins/plugin/addressbook/addressbook.c
+2
-95
2 additions, 95 deletions
sflphone-plugins/plugin/addressbook/addressbook.c
with
3 additions
and
96 deletions
sflphone-plugins/configure.ac
+
1
−
1
View file @
66018b6e
...
@@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
...
@@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_MACRO_DIR([m4])
dnl Silent build by default. Use make V=1 to increase verbosity
dnl Silent build by default. Use make V=1 to increase verbosity
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([
no
])])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([
yes
])])
AC_ARG_WITH(debug,
AC_ARG_WITH(debug,
AS_HELP_STRING(
AS_HELP_STRING(
...
...
This diff is collapsed.
Click to expand it.
sflphone-plugins/plugin/addressbook/addressbook.c
+
2
−
95
View file @
66018b6e
...
@@ -32,11 +32,6 @@
...
@@ -32,11 +32,6 @@
#include
"eds.h"
#include
"eds.h"
#include
"addressbook.h"
#include
"addressbook.h"
//#include "searchbar.h"
// #include "addressbook-config.h"
// static void
// handler_async_search (GList *, gpointer);
/**
/**
* Perform a search on address book
* Perform a search on address book
...
@@ -44,17 +39,9 @@
...
@@ -44,17 +39,9 @@
void
void
addressbook_search
(
AddrBookHandle
*
handle
,
GtkEntry
*
entry
,
AddressBook_Config
*
addressbook_config
)
addressbook_search
(
AddrBookHandle
*
handle
,
GtkEntry
*
entry
,
AddressBook_Config
*
addressbook_config
)
{
{
printf
(
"Addressbook: Search"
);
const
gchar
*
query
=
gtk_entry_get_text
(
GTK_ENTRY
(
entry
));
const
gchar
*
query
=
gtk_entry_get_text
(
GTK_ENTRY
(
entry
));
printf
(
"Addressbook: Search %s
\n
"
,
query
);
printf
(
"Addressbook: Search %s
\n
"
,
query
);
// AddressBook_Config *addressbook_config;
// activateWaitingLayer();
// addressbook_config_load_parameters (&addressbook_config);
search_async_by_contacts
(
gtk_entry_get_text
(
GTK_ENTRY
(
entry
)),
addressbook_config
->
max_results
,
handle
->
search_cb
,
addressbook_config
);
search_async_by_contacts
(
gtk_entry_get_text
(
GTK_ENTRY
(
entry
)),
addressbook_config
->
max_results
,
handle
->
search_cb
,
addressbook_config
);
}
}
...
@@ -65,14 +52,7 @@ addressbook_search (AddrBookHandle *handle, GtkEntry* entry, AddressBook_Config
...
@@ -65,14 +52,7 @@ addressbook_search (AddrBookHandle *handle, GtkEntry* entry, AddressBook_Config
gboolean
gboolean
addressbook_is_enabled
()
addressbook_is_enabled
()
{
{
AddressBook_Config
*
addressbook_config
;
return
TRUE
;
printf
(
"Addresbook: is enabled
\n
"
);
// Load the address book parameters
// addressbook_config_load_parameters (&addressbook_config);
return
(
gboolean
)
addressbook_config
->
enable
;
}
}
/**
/**
...
@@ -81,8 +61,6 @@ addressbook_is_enabled()
...
@@ -81,8 +61,6 @@ addressbook_is_enabled()
gboolean
gboolean
addressbook_is_ready
()
addressbook_is_ready
()
{
{
printf
(
"Addressbook: is ready
\n
"
);
return
books_ready
();
return
books_ready
();
}
}
...
@@ -92,7 +70,6 @@ addressbook_is_ready()
...
@@ -92,7 +70,6 @@ addressbook_is_ready()
gboolean
gboolean
addressbook_is_active
()
addressbook_is_active
()
{
{
printf
(
"Addressbook: is active
\n
"
);
return
books_active
();
return
books_active
();
}
}
...
@@ -164,76 +141,6 @@ addressbook_init(gchar **book_list)
...
@@ -164,76 +141,6 @@ addressbook_init(gchar **book_list)
init_eds
();
init_eds
();
}
}
/**
* Callback called after all book have been processed
*/
/*
static void
handler_async_search (GList *hits, gpointer user_data)
{
GList *i;
GdkPixbuf *photo = NULL;
AddressBook_Config *addressbook_config;
callable_obj_t *j;
printf("Addressbook: callback async search\n");
// freeing calls
while ( (j = (callable_obj_t *) g_queue_pop_tail (contacts->callQueue)) != NULL) {
free_callable_obj_t (j);
}
// Retrieve the address book parameters
addressbook_config = (AddressBook_Config*) user_data;
// reset previous results
calltree_reset (contacts);
calllist_reset (contacts);
for (i = hits; i != NULL; i = i->next) {
Hit *entry;
entry = i->data;
if (entry) {
// Get the photo
if (addressbook_display (addressbook_config,
ADDRESSBOOK_DISPLAY_CONTACT_PHOTO))
photo = entry->photo;
// Create entry for business phone information
if (addressbook_display (addressbook_config,
ADDRESSBOOK_DISPLAY_PHONE_BUSINESS))
calllist_add_contact (entry->name, entry->phone_business,
CONTACT_PHONE_BUSINESS, photo);
// Create entry for home phone information
if (addressbook_display (addressbook_config,
ADDRESSBOOK_DISPLAY_PHONE_HOME))
calllist_add_contact (entry->name, entry->phone_home,
CONTACT_PHONE_HOME, photo);
// Create entry for mobile phone iddnformation
if (addressbook_display (addressbook_config,
ADDRESSBOOK_DISPLAY_PHONE_MOBILE))
calllist_add_contact (entry->name, entry->phone_mobile,
CONTACT_PHONE_MOBILE, photo);
}
free_hit (entry);
}
g_list_free (hits);
// Deactivate waiting image
// deactivateWaitingLayer();
gtk_widget_grab_focus (GTK_WIDGET (contacts->view));
}
*/
void
addressbook_set_search_type
(
AddrbookSearchType
searchType
)
{
void
addressbook_set_search_type
(
AddrbookSearchType
searchType
)
{
switch
(
searchType
)
{
switch
(
searchType
)
{
case
ABOOK_QUERY_IS
:
case
ABOOK_QUERY_IS
:
...
@@ -243,7 +150,7 @@ void addressbook_set_search_type(AddrbookSearchType searchType) {
...
@@ -243,7 +150,7 @@ void addressbook_set_search_type(AddrbookSearchType searchType) {
set_current_addressbook_test
(
E_BOOK_QUERY_BEGINS_WITH
);
set_current_addressbook_test
(
E_BOOK_QUERY_BEGINS_WITH
);
break
;
break
;
case
ABOOK_QUERY_CONTAINS
:
case
ABOOK_QUERY_CONTAINS
:
set_current_addresbook_test
(
E_BOOK_QUERY_CONTAINS
);
set_current_addres
s
book_test
(
E_BOOK_QUERY_CONTAINS
);
break
;
break
;
default:
default:
printf
(
"Addressbook: Error: Unsupported search type"
);
printf
(
"Addressbook: Error: Unsupported search type"
);
...
...
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