gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Petter Reinholdtsen
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1873-gcd23732
Date: Sat, 19 Apr 2014 15:04:37 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  cd23732363e08f36088e26e0bddbc570cb94fbed (commit)
      from  bdc7dfe3fb6457a2984e4466cb6bf980ab787cfe (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=cd23732363e08f36088e26e0bddbc570cb94fbed


commit cd23732363e08f36088e26e0bddbc570cb94fbed
Author: Petter Reinholdtsen <address@hidden>
Date:   Sat Apr 19 17:01:04 2014 +0200

    Add missing break statements and use one log_unimpl() instead of
    multiple log_debug() (Coverity CID 149162, 149163, 149164, 149165).

diff --git a/libdevice/events/EventDevice.cpp b/libdevice/events/EventDevice.cpp
index 5351dcf..aae6a0f 100644
--- a/libdevice/events/EventDevice.cpp
+++ b/libdevice/events/EventDevice.cpp
@@ -409,13 +409,17 @@ EventDevice::check()
                 _input_data.rz = ev->value;
                 break;
             case REL_HWHEEL:
-                log_debug(_("REL_HWHEEL: %d"), ev->value);
+                log_unimpl(_("REL_HWHEEL: %d"), ev->value);
+                break;
             case REL_DIAL:
-                log_debug(_("REL_DIAL: %d"), ev->value);
+                log_unimpl(_("REL_DIAL: %d"), ev->value);
+                break;
             case REL_WHEEL:
-                log_debug(_("REL_WHEEL: %d"), ev->value);
+                log_unimpl(_("REL_WHEEL: %d"), ev->value);
+                break;
             case REL_MISC:
-                log_debug(_("REL_MISC: %d"), ev->value);
+                log_unimpl(_("REL_MISC: %d"), ev->value);
+                break;
             default:
                 log_unimpl(_("Relative move event %d from Input Event Device"),
                            ev->value);

-----------------------------------------------------------------------

Summary of changes:
 libdevice/events/EventDevice.cpp |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]