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-1836-gd4a198f
Date: Wed, 15 Jan 2014 21:43:05 +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  d4a198f5934792796faf6fc9974d3ef8a5d76d6d (commit)
      from  b69f91e6d3182c6feaddc18403597938bf5626c9 (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=d4a198f5934792796faf6fc9974d3ef8a5d76d6d


commit d4a198f5934792796faf6fc9974d3ef8a5d76d6d
Author: Petter Reinholdtsen <address@hidden>
Date:   Wed Jan 15 22:42:43 2014 +0100

    Add missing cost to virtual function overrides, to make sure they
    properly override the gnash::Gui virtual functions (Coverity CID
    1149091, 1149092, 1149093).

diff --git a/gui/fb/fbsup.h b/gui/fb/fbsup.h
index eeb5e8d..9e78908 100644
--- a/gui/fb/fbsup.h
+++ b/gui/fb/fbsup.h
@@ -151,11 +151,11 @@ public:
 
     // Information for System.capabilities to be reimplemented in
     // each gui.
-    double getPixelAspectRatio() { return 0; }
+    double getPixelAspectRatio() const { return 0; }
     int getScreenResX() { return 0; }
     int getScreenResY() { return 0; }
-    double getScreenDPI() { return 0; }
-    std::string getScreenColor() { return ""; }
+    double getScreenDPI() const { return 0; }
+    std::string getScreenColor() const { return ""; }
 
     // For the framebuffer, these are mostly just stubs.
 

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

Summary of changes:
 gui/fb/fbsup.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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