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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
19af062a
Commit
19af062a
authored
Feb 19, 2013
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
* #19867: gnome: always refresh account list on account updates
parent
60974328
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnome/src/config/accountlistconfigdialog.c
+3
-1
3 additions, 1 deletion
gnome/src/config/accountlistconfigdialog.c
with
3 additions
and
1 deletion
gnome/src/config/accountlistconfigdialog.c
+
3
−
1
View file @
19af062a
...
@@ -114,12 +114,15 @@ static void delete_account_cb(G_GNUC_UNUSED GtkButton *button, gpointer data)
...
@@ -114,12 +114,15 @@ static void delete_account_cb(G_GNUC_UNUSED GtkButton *button, gpointer data)
g_free
(
selected_accountID
);
g_free
(
selected_accountID
);
}
}
static
void
account_store_fill
();
static
void
static
void
run_account_dialog
(
const
gchar
*
selected_accountID
,
SFLPhoneClient
*
client
)
run_account_dialog
(
const
gchar
*
selected_accountID
,
SFLPhoneClient
*
client
)
{
{
account_t
*
account
=
account_list_get_by_id
(
selected_accountID
);
account_t
*
account
=
account_list_get_by_id
(
selected_accountID
);
GtkWidget
*
dialog
=
show_account_window
(
account
,
client
);
GtkWidget
*
dialog
=
show_account_window
(
account
,
client
);
update_account_from_dialog
(
dialog
,
account
);
update_account_from_dialog
(
dialog
,
account
);
account_store_fill
();
}
}
static
void
row_activated_cb
(
GtkTreeView
*
view
,
static
void
row_activated_cb
(
GtkTreeView
*
view
,
...
@@ -197,7 +200,6 @@ static void add_account_cb(SFLPhoneClient *client)
...
@@ -197,7 +200,6 @@ static void add_account_cb(SFLPhoneClient *client)
account_t
*
new_account
=
create_default_account
();
account_t
*
new_account
=
create_default_account
();
account_list_add
(
new_account
);
account_list_add
(
new_account
);
run_account_dialog
(
new_account
->
accountID
,
client
);
run_account_dialog
(
new_account
->
accountID
,
client
);
account_store_fill
();
}
}
/**
/**
...
...
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