Replace TRUE/FALSE with boolean values true/false

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ab880eca0d)
r14.1.x r14.1.4
Michele Calgaro 4 months ago
parent 7c88f17d43
commit 2704ee99f3
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -2225,7 +2225,7 @@ TDE_NO_EXPORT bool NpPlayer::deMediafiedPlay () {
dbus_message_iter_close_container (&ait, &dit);
}
dbus_message_iter_close_container (&it, &ait);
dbus_message_set_no_reply (msg, TRUE);
dbus_message_set_no_reply (msg, true);
dbus_connection_send (dbus_static->dbus_connnection, msg, NULL);
dbus_message_unref (msg);
dbus_connection_flush (dbus_static->dbus_connnection);
@ -2350,7 +2350,7 @@ void NpPlayer::sendFinish (TQ_UINT32 sid, TQ_UINT32 bytes, NpStream::Reason beca
DBUS_TYPE_UINT32, &bytes,
DBUS_TYPE_UINT32, &reason,
DBUS_TYPE_INVALID);
dbus_message_set_no_reply (msg, TRUE);
dbus_message_set_no_reply (msg, true);
dbus_connection_send (dbus_static->dbus_connnection, msg, NULL);
dbus_message_unref (msg);
dbus_connection_flush (dbus_static->dbus_connnection);
@ -2375,7 +2375,7 @@ TDE_NO_EXPORT bool NpPlayer::stop () {
"/plugin",
"org.kde.kmplayer.backend",
"quit");
dbus_message_set_no_reply (msg, TRUE);
dbus_message_set_no_reply (msg, true);
dbus_connection_send (dbus_static->dbus_connnection, msg, NULL);
dbus_message_unref (msg);
dbus_connection_flush (dbus_static->dbus_connnection);
@ -2425,7 +2425,7 @@ TDE_NO_EXPORT void NpPlayer::streamRedirected (TQ_UINT32 sid, const KURL &u) {
"org.kde.kmplayer.backend",
"redirected");
dbus_message_append_args(msg, DBUS_TYPE_STRING, &cu, DBUS_TYPE_INVALID);
dbus_message_set_no_reply (msg, TRUE);
dbus_message_set_no_reply (msg, true);
dbus_connection_send (dbus_static->dbus_connnection, msg, NULL);
dbus_message_unref (msg);
dbus_connection_flush (dbus_static->dbus_connnection);
@ -2495,7 +2495,7 @@ TDE_NO_EXPORT void NpPlayer::processStreams () {
DBUS_TYPE_STRING, &mt,
DBUS_TYPE_UINT32, &stream->content_length,
DBUS_TYPE_INVALID);
dbus_message_set_no_reply (msg, TRUE);
dbus_message_set_no_reply (msg, true);
dbus_connection_send (dbus_static->dbus_connnection, msg, NULL);
dbus_message_unref (msg);
dbus_connection_flush (dbus_static->dbus_connnection);

Loading…
Cancel
Save