gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog utilities/parser.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog utilities/parser.cpp
Date: Tue, 28 Nov 2006 00:27:03 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/11/28 00:27:03

Modified files:
        .              : ChangeLog 
        utilities      : parser.cpp 

Log message:
        hash_wrapper().

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1795&r2=1.1796
http://cvs.savannah.gnu.org/viewcvs/gnash/utilities/parser.cpp?cvsroot=gnash&r1=1.31&r2=1.32

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1795
retrieving revision 1.1796
diff -u -b -r1.1795 -r1.1796
--- ChangeLog   28 Nov 2006 00:19:22 -0000      1.1795
+++ ChangeLog   28 Nov 2006 00:27:03 -0000      1.1796
@@ -2,6 +2,7 @@
 
        * Reverted naming-changes.
        * libgeometry/kd_tree_dynamic.cpp: hash_wrapper().
+       * utilities/parser.cpp: hash_wrapper();
        * libbase/hash_wrapper.h: template-wrapper for add() and get() to 
          replacing hash()-code with <map>.
 

Index: utilities/parser.cpp
===================================================================
RCS file: /sources/gnash/gnash/utilities/parser.cpp,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- utilities/parser.cpp        11 Nov 2006 15:25:27 -0000      1.31
+++ utilities/parser.cpp        28 Nov 2006 00:27:03 -0000      1.32
@@ -16,7 +16,7 @@
 // 
 //
 
-/* $Id: parser.cpp,v 1.31 2006/11/11 15:25:27 strk Exp $ */
+/* $Id: parser.cpp,v 1.32 2006/11/28 00:27:03 nihilus Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -44,6 +44,7 @@
 #include "log.h"
 #include "gnash.h"
 #include "rc.h"
+#include "hash_wrapper.h"
 
 #define TWIPS_TO_PIXELS(x) ((x) / 20.f)
 #define PIXELS_TO_TWIPS(x) ((x) * 20.f)
@@ -89,7 +90,7 @@
 tu_file* out;
 
 typedef void (*loader_function)(stream* input, int tag_type);
-static hash<int, loader_function> tag_loaders;
+static hash_wrapper<int, loader_function> tag_loaders;
   
 void
 register_tag_loader(int tag_type, loader_function lf)




reply via email to

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