Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
2c815eeb
Commit
2c815eeb
authored
Jan 05, 2016
by
Gautier Pelloux-Prayer
Browse files
gtk: use gtk_signal instead of g_signal since we must propagate the event further
parent
7251c06e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gtk/chat.c
gtk/chat.c
+3
-2
No files found.
gtk/chat.c
View file @
2c815eeb
...
...
@@ -460,7 +460,7 @@ static gboolean copy_uri_into_clipboard_handler(GtkMenuItem *menuitem, gpointer
return
FALSE
;
}
static
void
linphone_gtk_window_focused
(
void
)
{
static
gint
linphone_gtk_window_focused
(
GtkWidget
*
widget
,
GdkEvent
*
event
,
gpointer
user_data
)
{
// if we are in a chat, mark it as read
GtkWidget
*
main_window
=
linphone_gtk_get_main_window
();
GtkWidget
*
friendlist
=
linphone_gtk_get_widget
(
main_window
,
"contact_list"
);
...
...
@@ -469,6 +469,7 @@ static void linphone_gtk_window_focused(void) {
if
(
cr
)
{
linphone_gtk_mark_chat_read
(
cr
);
}
return
FALSE
;
}
GtkWidget
*
linphone_gtk_init_chatroom
(
LinphoneChatRoom
*
cr
,
const
LinphoneAddress
*
with
){
...
...
@@ -548,7 +549,7 @@ GtkWidget* linphone_gtk_init_chatroom(LinphoneChatRoom *cr, const LinphoneAddres
g_signal_connect_swapped
(
G_OBJECT
(
entry
),
"changed"
,(
GCallback
)
linphone_gtk_compose_text
,
NULL
);
g_signal_connect
(
G_OBJECT
(
notebook
),
"switch_page"
,(
GCallback
)
linphone_gtk_notebook_tab_select
,
NULL
);
g_signal_connect
(
G_OBJECT
(
main_window
),
"focus-in-event"
,
G
_CALLBACK
(
linphone_gtk_window_focused
),
NULL
);
g
tk
_signal_connect
(
G
TK
_OBJECT
(
main_window
),
"focus-in-event"
,
G
TK_SIGNAL_FUNC
(
linphone_gtk_window_focused
),
NULL
);
return
chat_view
;
}
...
...
Write
Preview
Markdown
is supported
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