Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-client-gnome
Commits
66c50a32
Commit
66c50a32
authored
May 06, 2015
by
Edric Milaret
Committed by
Stepan Salenikovich
May 06, 2015
Browse files
gnome: fix compilation on gnome 3.16.1
Refs #72584 Change-Id: I975c2423f973c1bd834a95f796bf5e8d797bc905
parent
6e7b092f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/backends/edscontactbackend.cpp
View file @
66c50a32
...
...
@@ -67,9 +67,14 @@ registry_cb(G_GNUC_UNUSED GObject *source, GAsyncResult *result, GCancellable *c
ESource
*
source
=
E_SOURCE
(
l
->
data
);
/* try to connect to each source ansynch */
#if EDS_CHECK_VERSION(3,16,0)
e_book_client_connect
(
source
,
WAIT_FOR_CONNECTED_SECONDS
,
cancellable
,
(
GAsyncReadyCallback
)
client_cb
,
NULL
);
e_book_client_connect
(
source
,
EdsContactBackend
::
WAIT_FOR_CONNECTED_SECONDS
,
cancellable
,
(
GAsyncReadyCallback
)
client_cb
,
NULL
);
#else
e_book_client_connect
(
source
,
cancellable
,
(
GAsyncReadyCallback
)
client_cb
,
NULL
);
#endif
e_book_client_connect
(
source
,
cancellable
,
(
GAsyncReadyCallback
)
client_cb
,
NULL
);
}
g_list_free_full
(
list
,
g_object_unref
);
...
...
src/backends/edscontactbackend.h
View file @
66c50a32
...
...
@@ -69,7 +69,7 @@ public:
* authentication requests. In case the backend will not connect within the
* set interval, then it is opened in an offline mode. A special value -1
* can be used to not wait for the connected state at all.
*
*/
*/
constexpr
static
guint32
WAIT_FOR_CONNECTED_SECONDS
{
5
};
#endif
...
...
RingBot
@RingBot
mentioned in commit
24d9962e
·
May 15, 2018
mentioned in commit
24d9962e
mentioned in commit 24d9962e88c67c54692d29e015205917f9560888
Toggle commit list
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