Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
5e9d7492
Commit
5e9d7492
authored
Dec 04, 2007
by
Emmanuel Milou
Browse files
Delete the arrow that did nothing
parent
7ff9c3ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/calltree.c
View file @
5e9d7492
...
...
@@ -27,7 +27,7 @@
GtkListStore
*
store
;
GtkWidget
*
view
;
GtkWidget
*
account_store
;
//
GtkWidget * account_store;
GtkWidget
*
item
;
GtkWidget
*
toolbar
;
...
...
@@ -255,7 +255,7 @@ void row_activated(GtkTreeView *tree_view,
}
}
}
/*
void
fast_fill_account_list()
{
...
...
@@ -272,7 +272,7 @@ fast_fill_account_list()
}
}
*/
GtkWidget
*
...
...
@@ -284,12 +284,12 @@ create_toolbar (){
toolbar
=
ret
;
account_store
=
gtk_menu_new
();
fast_fill_account_list
();
//
account_store = gtk_menu_new();
//
fast_fill_account_list();
image
=
gtk_image_new_from_file
(
ICONS_DIR
"/call.svg"
);
callButton
=
gtk_menu_tool_button_new
(
image
,
"Place a Call"
);
gtk_menu_tool_button_set_menu
(
GTK_MENU_TOOL_BUTTON
(
callButton
),
GTK_WIDGET
(
account_store
));
//
gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(callButton), GTK_WIDGET(account_store));
g_signal_connect
(
G_OBJECT
(
callButton
),
"clicked"
,
G_CALLBACK
(
call_button
),
NULL
);
gtk_toolbar_insert
(
GTK_TOOLBAR
(
ret
),
GTK_TOOL_ITEM
(
callButton
),
-
1
);
...
...
sflphone-gtk/src/dbus.c
View file @
5e9d7492
...
...
@@ -147,7 +147,7 @@ accounts_changed_cb (DBusGProxy *proxy,
g_print
(
"Accounts changed
\n
"
);
sflphone_fill_account_list
();
config_window_fill_account_list
();
fast_fill_account_list
();
//
fast_fill_account_list();
}
gboolean
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment