Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
fe601918
Commit
fe601918
authored
Jun 13, 2017
by
Wescoeur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(app): coding style
parent
e2ddb931
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Paths.cpp
linphone-desktop/src/app/paths/Paths.cpp
+1
-1
CallsListModel.cpp
linphone-desktop/src/components/calls/CallsListModel.cpp
+1
-1
ChatModel.cpp
linphone-desktop/src/components/chat/ChatModel.cpp
+1
-1
CoreManager.cpp
linphone-desktop/src/components/core/CoreManager.cpp
+1
-1
No files found.
linphone-desktop/src/app/paths/Paths.cpp
View file @
fe601918
...
...
@@ -191,7 +191,7 @@ string Paths::getFriendsListFilePath () {
return
getWritableFilePath
(
getAppFriendsFilePath
());
}
st
d
::
st
ring
Paths
::
getDownloadDirPath
()
{
string
Paths
::
getDownloadDirPath
()
{
return
getWritableDirPath
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
DownloadLocation
));
}
...
...
linphone-desktop/src/components/calls/CallsListModel.cpp
View file @
fe601918
...
...
@@ -137,7 +137,7 @@ void CallsListModel::terminateAllCalls () const {
// -----------------------------------------------------------------------------
void
CallsListModel
::
handleCallStateChanged
(
const
s
td
::
s
hared_ptr
<
linphone
::
Call
>
&
call
,
linphone
::
CallState
state
)
{
void
CallsListModel
::
handleCallStateChanged
(
const
shared_ptr
<
linphone
::
Call
>
&
call
,
linphone
::
CallState
state
)
{
switch
(
state
)
{
case
linphone
:
:
CallStateIncomingReceived
:
case
linphone
:
:
CallStateOutgoingInit
:
...
...
linphone-desktop/src/components/chat/ChatModel.cpp
View file @
fe601918
...
...
@@ -57,7 +57,7 @@ inline QString getDownloadPath (const shared_ptr<linphone::ChatMessage> &message
return
::
Utils
::
coreStringToAppString
(
message
->
getAppdata
()).
section
(
':'
,
1
);
}
inline
bool
fileWasDownloaded
(
const
s
td
::
s
hared_ptr
<
linphone
::
ChatMessage
>
&
message
)
{
inline
bool
fileWasDownloaded
(
const
shared_ptr
<
linphone
::
ChatMessage
>
&
message
)
{
const
QString
&
path
=
getDownloadPath
(
message
);
return
!
path
.
isEmpty
()
&&
QFileInfo
(
path
).
isFile
();
}
...
...
linphone-desktop/src/components/core/CoreManager.cpp
View file @
fe601918
...
...
@@ -127,7 +127,7 @@ void CoreManager::setResourcesPaths () {
void
CoreManager
::
createLinphoneCore
(
const
QString
&
configPath
)
{
qInfo
()
<<
QStringLiteral
(
"Launch async linphone core creation."
);
// Migration of configuration and database files from GTK version of Linphone
// Migration of configuration and database files from GTK version of Linphone
.
Paths
::
migrate
();
setResourcesPaths
();
...
...
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