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
39f82d62
Commit
39f82d62
authored
16 years ago
by
Julien Bonjean
Browse files
Options
Downloads
Patches
Plain Diff
Removed too verbose outputs
parent
c1536c9c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
sflphone-gtk/src/calltree.c
+19
-25
19 additions, 25 deletions
sflphone-gtk/src/calltree.c
sflphone-gtk/src/searchfilter.c
+0
-4
0 additions, 4 deletions
sflphone-gtk/src/searchfilter.c
with
19 additions
and
29 deletions
sflphone-gtk/src/calltree.c
+
19
−
25
View file @
39f82d62
...
@@ -189,8 +189,6 @@ static void toggle_button_cb (GtkToggleToolButton *widget, gpointer user_data)
...
@@ -189,8 +189,6 @@ static void toggle_button_cb (GtkToggleToolButton *widget, gpointer user_data)
to_switch
=
(
calltab_t
*
)
user_data
;
to_switch
=
(
calltab_t
*
)
user_data
;
toggle
=
gtk_toggle_tool_button_get_active
(
widget
);
toggle
=
gtk_toggle_tool_button_get_active
(
widget
);
g_print
(
"%i
\n
"
,
toggle
);
(
toggle
)
?
display_calltree
(
to_switch
)
:
display_calltree
(
current_calls
);
(
toggle
)
?
display_calltree
(
to_switch
)
:
display_calltree
(
current_calls
);
}
}
...
@@ -379,7 +377,6 @@ toolbar_update_buttons ()
...
@@ -379,7 +377,6 @@ toolbar_update_buttons ()
static
void
static
void
selected
(
GtkTreeSelection
*
sel
,
void
*
data
UNUSED
)
selected
(
GtkTreeSelection
*
sel
,
void
*
data
UNUSED
)
{
{
g_print
(
"---- selected ---
\n
"
);
GtkTreeIter
iter
;
GtkTreeIter
iter
;
GValue
val
;
GValue
val
;
GtkTreeModel
*
model
=
(
GtkTreeModel
*
)
active_calltree
->
store
;
GtkTreeModel
*
model
=
(
GtkTreeModel
*
)
active_calltree
->
store
;
...
@@ -721,7 +718,6 @@ update_call_tree_remove (calltab_t* tab, call_t * c)
...
@@ -721,7 +718,6 @@ update_call_tree_remove (calltab_t* tab, call_t * c)
void
void
update_call_tree
(
calltab_t
*
tab
,
call_t
*
c
)
update_call_tree
(
calltab_t
*
tab
,
call_t
*
c
)
{
{
g_print
(
"update call tree
\n
"
);
GdkPixbuf
*
pixbuf
=
NULL
;
GdkPixbuf
*
pixbuf
=
NULL
;
GtkTreeIter
iter
;
GtkTreeIter
iter
;
GValue
val
;
GValue
val
;
...
@@ -948,8 +944,6 @@ void display_calltree (calltab_t *tab) {
...
@@ -948,8 +944,6 @@ void display_calltree (calltab_t *tab) {
GtkTreeSelection
*
sel
;
GtkTreeSelection
*
sel
;
g_print
(
"display_calltree called
\n
"
);
/* If we already are displaying the specified calltree */
/* If we already are displaying the specified calltree */
if
(
active_calltree
==
tab
)
if
(
active_calltree
==
tab
)
return
;
return
;
...
...
This diff is collapsed.
Click to expand it.
sflphone-gtk/src/searchfilter.c
+
0
−
4
View file @
39f82d62
...
@@ -139,8 +139,6 @@ void filter_entry_changed (GtkEntry* entry, gchar* arg1 UNUSED, gpointer data UN
...
@@ -139,8 +139,6 @@ void filter_entry_changed (GtkEntry* entry, gchar* arg1 UNUSED, gpointer data UN
void
void
filter_entry_changed_history
(
GtkEntry
*
entry
UNUSED
,
gchar
*
arg1
UNUSED
,
gpointer
data
UNUSED
)
filter_entry_changed_history
(
GtkEntry
*
entry
UNUSED
,
gchar
*
arg1
UNUSED
,
gpointer
data
UNUSED
)
{
{
g_print
(
"--- filter_entry_changed_history ---
\n
"
);
if
(
active_calltree
!=
history
)
if
(
active_calltree
!=
history
)
display_calltree
(
history
);
display_calltree
(
history
);
...
@@ -178,8 +176,6 @@ GtkWidget* create_filter_entry_contact() {
...
@@ -178,8 +176,6 @@ GtkWidget* create_filter_entry_contact() {
GtkWidget
*
create_filter_entry_history
()
{
GtkWidget
*
create_filter_entry_history
()
{
g_print
(
"--- create_filter_entry_history ---
\n
"
);
GtkWidget
*
image
;
GtkWidget
*
image
;
GtkWidget
*
ret
=
gtk_hbox_new
(
FALSE
,
0
);
GtkWidget
*
ret
=
gtk_hbox_new
(
FALSE
,
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