Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
liblinphone
Commits
e98ce1ea
Commit
e98ce1ea
authored
Nov 10, 2017
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some cleaning.
parent
09866072
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/chat/chat-room/client-group-chat-room-p.h
src/chat/chat-room/client-group-chat-room-p.h
+1
-1
src/chat/chat-room/client-group-chat-room.cpp
src/chat/chat-room/client-group-chat-room.cpp
+3
-3
src/chat/chat-room/client-group-chat-room.h
src/chat/chat-room/client-group-chat-room.h
+1
-1
No files found.
src/chat/chat-room/client-group-chat-room-p.h
View file @
e98ce1ea
...
@@ -33,7 +33,7 @@ public:
...
@@ -33,7 +33,7 @@ public:
std
::
list
<
Address
>
cleanAddressesList
(
const
std
::
list
<
Address
>
&
addresses
)
const
;
std
::
list
<
Address
>
cleanAddressesList
(
const
std
::
list
<
Address
>
&
addresses
)
const
;
std
::
shared_ptr
<
CallSession
>
createSession
();
std
::
shared_ptr
<
CallSession
>
createSession
();
void
notifyReceived
(
std
::
string
body
);
void
notifyReceived
(
const
std
::
string
&
body
);
private:
private:
L_DECLARE_PUBLIC
(
ClientGroupChatRoom
);
L_DECLARE_PUBLIC
(
ClientGroupChatRoom
);
...
...
src/chat/chat-room/client-group-chat-room.cpp
View file @
e98ce1ea
...
@@ -69,7 +69,7 @@ shared_ptr<CallSession> ClientGroupChatRoomPrivate::createSession () {
...
@@ -69,7 +69,7 @@ shared_ptr<CallSession> ClientGroupChatRoomPrivate::createSession () {
return
session
;
return
session
;
}
}
void
ClientGroupChatRoomPrivate
::
notifyReceived
(
string
body
)
{
void
ClientGroupChatRoomPrivate
::
notifyReceived
(
const
string
&
body
)
{
L_Q_T
(
RemoteConference
,
qConference
);
L_Q_T
(
RemoteConference
,
qConference
);
qConference
->
getPrivate
()
->
eventHandler
->
notifyReceived
(
body
);
qConference
->
getPrivate
()
->
eventHandler
->
notifyReceived
(
body
);
}
}
...
@@ -79,11 +79,11 @@ void ClientGroupChatRoomPrivate::notifyReceived (string body) {
...
@@ -79,11 +79,11 @@ void ClientGroupChatRoomPrivate::notifyReceived (string body) {
ClientGroupChatRoom
::
ClientGroupChatRoom
(
ClientGroupChatRoom
::
ClientGroupChatRoom
(
const
std
::
shared_ptr
<
Core
>
&
core
,
const
std
::
shared_ptr
<
Core
>
&
core
,
const
Address
&
me
,
const
Address
&
me
,
const
std
::
string
&
u
ri
,
const
std
::
string
&
factoryU
ri
,
const
std
::
string
&
subject
const
std
::
string
&
subject
)
:
ChatRoom
(
*
new
ClientGroupChatRoomPrivate
,
core
,
Address
()),
RemoteConference
(
core
->
getCCore
(),
me
,
nullptr
)
{
)
:
ChatRoom
(
*
new
ClientGroupChatRoomPrivate
,
core
,
Address
()),
RemoteConference
(
core
->
getCCore
(),
me
,
nullptr
)
{
L_D_T
(
RemoteConference
,
dConference
);
L_D_T
(
RemoteConference
,
dConference
);
dConference
->
focus
=
make_shared
<
Participant
>
(
Address
(
u
ri
));
dConference
->
focus
=
make_shared
<
Participant
>
(
Address
(
factoryU
ri
));
RemoteConference
::
setSubject
(
subject
);
RemoteConference
::
setSubject
(
subject
);
}
}
...
...
src/chat/chat-room/client-group-chat-room.h
View file @
e98ce1ea
...
@@ -35,7 +35,7 @@ public:
...
@@ -35,7 +35,7 @@ public:
ClientGroupChatRoom
(
ClientGroupChatRoom
(
const
std
::
shared_ptr
<
Core
>
&
core
,
const
std
::
shared_ptr
<
Core
>
&
core
,
const
Address
&
me
,
const
Address
&
me
,
const
std
::
string
&
u
ri
,
const
std
::
string
&
factoryU
ri
,
const
std
::
string
&
subject
const
std
::
string
&
subject
);
);
...
...
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