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
9ba39c74
Commit
9ba39c74
authored
13 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
* #10320: calltree: remove global var
parent
1cc552bb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnome/src/contacts/calltree.c
+3
-5
3 additions, 5 deletions
gnome/src/contacts/calltree.c
with
3 additions
and
5 deletions
gnome/src/contacts/calltree.c
+
3
−
5
View file @
9ba39c74
...
...
@@ -57,7 +57,6 @@ static const gchar * const SFL_TRANSFER_CALL = "Transfer call to";
static
GtkWidget
*
calltree_sw
=
NULL
;
static
GtkCellRenderer
*
calltree_rend
=
NULL
;
static
GtkTreeViewColumn
*
calltree_col
=
NULL
;
static
GtkTreeSelection
*
calltree_sel
=
NULL
;
static
GtkWidget
*
calltree_popupmenu
=
NULL
;
...
...
@@ -86,7 +85,7 @@ static conference_obj_t *calltree_selected_conf = NULL;
static
void
drag_data_get_cb
(
GtkTreeDragSource
*
drag_source
,
GtkTreePath
*
path
,
GtkSelectionData
*
selection_data
,
gpointer
data
);
static
void
drag_end_cb
(
GtkWidget
*
,
GdkDragContext
*
,
gpointer
);
static
void
drag_begin_cb
(
GtkWidget
*
widget
,
GdkDragContext
*
context
,
gpointer
data
UNUSED
);
static
void
drag_begin_cb
(
GtkWidget
*
widget
,
GdkDragContext
*
context
,
gpointer
data
UNUSED
);
static
void
drag_data_received_cb
(
GtkWidget
*
,
GdkDragContext
*
,
gint
,
gint
,
GtkSelectionData
*
,
guint
,
guint
,
gpointer
);
static
void
drag_history_received_cb
(
GtkWidget
*
,
GdkDragContext
*
,
gint
,
gint
,
GtkSelectionData
*
,
guint
,
guint
,
gpointer
);
static
void
menuitem_response
(
gchar
*
);
...
...
@@ -509,10 +508,9 @@ calltree_create(calltab_t* tab, int searchbar_type)
gtk_widget_grab_focus
(
GTK_WIDGET
(
tab
->
view
));
calltree_rend
=
gtk_cell_renderer_pixbuf_new
();
calltree_col
=
gtk_tree_view_column_new_with_attributes
(
"Icon"
,
calltree_rend
,
"pixbuf"
,
COLUMN_ACCOUNT_PIXBUF
,
NULL
);
GtkTreeViewColumn
*
calltree_col
=
gtk_tree_view_column_new_with_attributes
(
"Icon"
,
calltree_rend
,
"pixbuf"
,
COLUMN_ACCOUNT_PIXBUF
,
NULL
);
gtk_tree_view_append_column
(
GTK_TREE_VIEW
(
tab
->
view
),
calltree_col
);
calltree_rend
=
gtk_cell_renderer_text_new
();
calltree_rend
=
gtk_cell_renderer_text_new
();
calltree_col
=
gtk_tree_view_column_new_with_attributes
(
"Description"
,
calltree_rend
,
"markup"
,
COLUMN_ACCOUNT_DESC
,
NULL
);
...
...
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