aboutsummaryrefslogtreecommitdiff
path: root/src/ui/chats.c
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-09-09 20:33:51 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-09-09 20:33:51 +0200
commit969f1536918e342bb331acfb042bf906c307978c (patch)
treee2fe73c95ac3d09c3bf2533eb25621257dce6695 /src/ui/chats.c
parent18d12007e147e7520e188dac91918ce1a94da409 (diff)
downloadmessenger-cli-969f1536918e342bb331acfb042bf906c307978c.tar.gz
messenger-cli-969f1536918e342bb331acfb042bf906c307978c.zip
Added documentation comments to the functions
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'src/ui/chats.c')
-rw-r--r--src/ui/chats.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/chats.c b/src/ui/chats.c
index c2cc2ae..55e08df 100644
--- a/src/ui/chats.c
+++ b/src/ui/chats.c
@@ -191,17 +191,17 @@ chats_print(UI_CHATS_Handle *chats,
191{ 191{
192 if (chats->open_dialog.window) 192 if (chats->open_dialog.window)
193 { 193 {
194 chat_open_dialog_print(&(chats->open_dialog), app); 194 chat_open_dialog_print(&(chats->open_dialog));
195 return; 195 return;
196 } 196 }
197 else if (chats->create_dialog.win) 197 else if (chats->create_dialog.win)
198 { 198 {
199 lobby_create_dialog_print(&(chats->create_dialog), app); 199 lobby_create_dialog_print(&(chats->create_dialog));
200 return; 200 return;
201 } 201 }
202 else if (chats->enter_dialog.window) 202 else if (chats->enter_dialog.window)
203 { 203 {
204 lobby_enter_dialog_print(&(chats->enter_dialog), app); 204 lobby_enter_dialog_print(&(chats->enter_dialog));
205 return; 205 return;
206 } 206 }
207 207