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
7c2ce9d1
Commit
7c2ce9d1
authored
Nov 30, 2017
by
Benjamin REIS
Browse files
notify core when chat room is created instead of instantiated
parent
d111d78f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/chat/chat-room/chat-room.cpp
View file @
7c2ce9d1
...
...
@@ -60,7 +60,8 @@ void ChatRoomPrivate::setState (ChatRoom::State newState) {
L_Q
();
if
(
newState
!=
state
)
{
state
=
newState
;
if
(
state
==
ChatRoom
::
State
::
Instantiated
)
if
(
state
==
ChatRoom
::
State
::
Created
)
// TODO : Rename from instatiated to created.
linphone_core_notify_chat_room_instantiated
(
q
->
getCore
()
->
getCCore
(),
L_GET_C_BACK_PTR
(
q
));
notifyStateChanged
();
}
...
...
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