gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog gui/fb.cpp gui/fbsup.h


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/fb.cpp gui/fbsup.h
Date: Mon, 09 Oct 2006 15:42:51 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/10/09 15:42:50

Modified files:
        .              : ChangeLog 
        gui            : fb.cpp fbsup.h 

Log message:
        * gui/fb.cpp, gui/fbsup.h: fixed createWindow() function to reflect new 
Gui interface. Removed unused parameters warnings.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1092&r2=1.1093
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/fb.cpp?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/fbsup.h?cvsroot=gnash&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1092
retrieving revision 1.1093
diff -u -b -r1.1092 -r1.1093
--- ChangeLog   9 Oct 2006 14:44:48 -0000       1.1092
+++ ChangeLog   9 Oct 2006 15:42:50 -0000       1.1093
@@ -1,5 +1,7 @@
 2006-10-09 Sandro Santilli <address@hidden>
 
+       * gui/fb.cpp, gui/fbsup.h: fixed createWindow() function to reflect
+         new Gui interface. Removed unused parameters warnings.
        * macros/gstreamer.m4: fix invocation of pkg-config (use it IFF
          PKG_CONFIG is set, not if it is NOT set :/)
        * gui/gui.h: forced generation of brief description for doxygen.

Index: gui/fb.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/fb.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- gui/fb.cpp  9 Oct 2006 13:47:44 -0000       1.3
+++ gui/fb.cpp  9 Oct 2006 15:42:50 -0000       1.4
@@ -188,7 +188,7 @@
   #undef TO_16BIT
 }
 
-bool FBGui::init(int argc, char **argv[])
+bool FBGui::init(int /*argc*/, char *** /*argv*/)
 {
   // Open the framebuffer device
   fd = open("/dev/fb0", O_RDWR);
@@ -336,7 +336,7 @@
 #endif
 }
 
-bool FBGui::createWindow(int width, int height)
+bool FBGui::createWindow(const char* /*title*/, int /*width*/, int /*height*/)
 {
   // Framebuffer has no windows... :-)
 
@@ -360,7 +360,7 @@
        _interval = interval;
 }
 
-void FBGui::setTimeout(unsigned int timeout)
+void FBGui::setTimeout(unsigned int /*timeout*/)
 {
 
 }

Index: gui/fbsup.h
===================================================================
RCS file: /sources/gnash/gnash/gui/fbsup.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- gui/fbsup.h 9 Oct 2006 13:47:44 -0000       1.2
+++ gui/fbsup.h 9 Oct 2006 15:42:50 -0000       1.3
@@ -74,7 +74,7 @@
                FBGui(unsigned long xid, float scale, bool loop, unsigned int 
depth);
     virtual ~FBGui();
     virtual bool init(int argc, char **argv[]);
-    virtual bool createWindow(int width, int height);
+    virtual bool createWindow(const char* title, int width, int height);
     virtual bool run(void *);
     virtual bool createMenu();
     virtual bool setupEvents();




reply via email to

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