gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/dlist.h


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/dlist.h
Date: Fri, 18 May 2007 16:33:43 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/05/18 16:33:43

Modified files:
        .              : ChangeLog 
        server         : dlist.h 

Log message:
        * server/dlist.h: document the addAll() and add() methods.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3276&r2=1.3277
http://cvs.savannah.gnu.org/viewcvs/gnash/server/dlist.h?cvsroot=gnash&r1=1.39&r2=1.40

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3276
retrieving revision 1.3277
diff -u -b -r1.3276 -r1.3277
--- ChangeLog   18 May 2007 16:23:27 -0000      1.3276
+++ ChangeLog   18 May 2007 16:33:42 -0000      1.3277
@@ -1,5 +1,6 @@
 2007-05-18 Sandro Santilli <address@hidden>
 
+       * server/dlist.h: document the addAll() and add() methods.
        * server/asobj/NetStreamGst.cpp: provide a buildFLVPipeline() calling
          the video/audio versions internally and locking the pipelineMutex.
          Lock the pipelineMutex from buildPipeline() too. Document locking

Index: server/dlist.h
===================================================================
RCS file: /sources/gnash/gnash/server/dlist.h,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -b -r1.39 -r1.40
--- server/dlist.h      11 May 2007 17:53:29 -0000      1.39
+++ server/dlist.h      18 May 2007 16:33:42 -0000      1.40
@@ -227,10 +227,27 @@
        ///
        void clear_except(const DisplayList& exclude, bool call_unload=false);
 
-       /// Add all chars in the list
+       /// Add all characters in the list, maintaining depth-order
+       //
+       /// @param chars
+       ///     The characters to add
+       ///
+       /// @param replace
+       ///     If true the given characters would replace any
+       ///     pre-existing character at the same depth.
+       ///
        void addAll(std::vector<character*>& chars, bool replace);
 
-       /// Add chars in the list
+       /// Add a character in the list, maintaining depth-order
+       //
+       ///
+       /// @param ch
+       ///     The character to add
+       ///
+       /// @param replace
+       ///     If true the given character would replace any
+       ///     pre-existing character at the same depth.
+       ///
        void add(character* ch, bool replace);
 
        // It is executed only before the second and the subsequent




reply via email to

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