aboutsummaryrefslogtreecommitdiff
path: root/src/ui/accounts.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/accounts.c')
-rw-r--r--src/ui/accounts.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/accounts.c b/src/ui/accounts.c
index c3cdb85..377bdc9 100644
--- a/src/ui/accounts.c
+++ b/src/ui/accounts.c
@@ -49,9 +49,9 @@ accounts_event(UI_ACCOUNTS_Handle *accounts,
49 MESSENGER_Application *app, 49 MESSENGER_Application *app,
50 int key) 50 int key)
51{ 51{
52 if (accounts->create.window) 52 if (accounts->create_dialog.window)
53 { 53 {
54 account_create_event(&(accounts->create), app, key); 54 account_create_dialog_event(&(accounts->create_dialog), app, key);
55 return; 55 return;
56 } 56 }
57 57
@@ -88,7 +88,7 @@ accounts_event(UI_ACCOUNTS_Handle *accounts,
88 if (accounts->selected) 88 if (accounts->selected)
89 GNUNET_CHAT_connect(app->chat.handle, accounts->selected); 89 GNUNET_CHAT_connect(app->chat.handle, accounts->selected);
90 else 90 else
91 accounts->create.window = accounts->window; 91 accounts->create_dialog.window = accounts->window;
92 break; 92 break;
93 } 93 }
94 default: 94 default:
@@ -163,9 +163,9 @@ void
163accounts_print(UI_ACCOUNTS_Handle *accounts, 163accounts_print(UI_ACCOUNTS_Handle *accounts,
164 MESSENGER_Application *app) 164 MESSENGER_Application *app)
165{ 165{
166 if (accounts->create.window) 166 if (accounts->create_dialog.window)
167 { 167 {
168 account_create_print(&(accounts->create), app); 168 account_create_dialog_print(&(accounts->create_dialog), app);
169 return; 169 return;
170 } 170 }
171 171