Format line length to 80 instead of 100
This commit is contained in:
parent
be0c0e278a
commit
2ece711c2e
27 changed files with 161 additions and 96 deletions
|
@ -22,7 +22,8 @@ bool HasCapability(const std::string& capability) {
|
|||
bool result = false;
|
||||
GList* capabilities = libnotify_loader_.notify_get_server_caps();
|
||||
|
||||
if (g_list_find_custom(capabilities, capability.c_str(), (GCompareFunc) g_strcmp0) != NULL)
|
||||
if (g_list_find_custom(capabilities, capability.c_str(),
|
||||
(GCompareFunc)g_strcmp0) != NULL)
|
||||
result = true;
|
||||
|
||||
g_list_free_full(capabilities, g_free);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue