Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
linphone-desktop
Merge requests
!1165
Autostart parameter in settings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Christophe Deschamps
requested to merge
story/LINQT-1420
into
master
3 months ago
Overview
0
Commits
3
Pipelines
3
Changes
11
0
0
Compare
master
version 2
a82edf8a
3 months ago
version 1
26327ba9
3 months ago
master (base)
and
latest version
latest version
c4721dc8
3 commits,
3 months ago
version 2
a82edf8a
3 commits,
3 months ago
version 1
26327ba9
2 commits,
3 months ago
11 files
+
69
−
18
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
Linphone/core/address-books/carddav/CarddavGui.cpp
+
8
−
0
Options
View file @ c4721dc8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -29,6 +29,14 @@ CarddavGui::CarddavGui(QSharedPointer<CarddavCore> core) {
if
(
isInLinphoneThread
())
moveToThread
(
App
::
getInstance
()
->
thread
());
}
CarddavGui
::
CarddavGui
(
QObject
*
parent
)
:
QObject
(
parent
)
{
mustBeInMainThread
(
log
().
arg
(
Q_FUNC_INFO
));
App
::
postModelSync
([
this
]()
{
mustBeInLinphoneThread
(
log
().
arg
(
Q_FUNC_INFO
));
mCore
=
CarddavCore
::
create
(
nullptr
);
});
}
CarddavGui
::~
CarddavGui
()
{
mustBeInMainThread
(
"~"
+
getClassName
());
}
Linphone/core/address-books/carddav/CarddavGui.hpp
+
1
−
0
Options
View file @ c4721dc8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -32,6 +32,7 @@ class CarddavGui : public QObject, public AbstractObject {
public:
CarddavGui
(
QSharedPointer
<
CarddavCore
>
core
);
CarddavGui
(
QObject
*
parent
=
nullptr
);
~
CarddavGui
();
CarddavCore
*
getCore
()
const
;
QSharedPointer
<
CarddavCore
>
mCore
;
Linphone/core/address-books/carddav/CarddavList.cpp
+
4
−
2
Options
View file @ c4721dc8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -72,12 +72,14 @@ void CarddavList::setSelf(QSharedPointer<CarddavList> me) {
});
});
});
QObject
::
connect
(
CoreModel
::
getInstance
().
get
(),
&
CoreModel
::
friendListRemoved
,
this
,
mModelConnection
->
makeConnectToModel
(
&
CoreModel
::
friendListRemoved
,
[
this
](
const
std
::
shared_ptr
<
linphone
::
Core
>
&
core
,
const
std
::
shared_ptr
<
linphone
::
FriendList
>
&
friendList
)
{
mustBeInLinphoneThread
(
log
().
arg
(
Q_FUNC_INFO
));
emit
lUpdate
();
});
emit
lUpdate
();
}
Linphone/core/address-books/ldap/LdapGui.cpp
+
8
−
0
Options
View file @ c4721dc8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -29,6 +29,14 @@ LdapGui::LdapGui(QSharedPointer<LdapCore> core) {
if
(
isInLinphoneThread
())
moveToThread
(
App
::
getInstance
()
->
thread
());
}
LdapGui
::
LdapGui
(
QObject
*
parent
)
:
QObject
(
parent
)
{
mustBeInMainThread
(
getClassName
());
App
::
postModelSync
([
this
]()
{
mustBeInLinphoneThread
(
log
().
arg
(
Q_FUNC_INFO
));
mCore
=
LdapCore
::
create
(
nullptr
);
});
}
LdapGui
::~
LdapGui
()
{
mustBeInMainThread
(
"~"
+
getClassName
());
}
Linphone/core/address-books/ldap/LdapGui.hpp
+
1
−
0
Options
View file @ c4721dc8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -32,6 +32,7 @@ class LdapGui : public QObject, public AbstractObject {
public:
LdapGui
(
QSharedPointer
<
LdapCore
>
core
);
LdapGui
(
QObject
*
parent
=
nullptr
);
~
LdapGui
();
LdapCore
*
getCore
()
const
;
QSharedPointer
<
LdapCore
>
mCore
;
Menu
Explore
Projects
Groups
Topics
Snippets