[sword-cvs] sword/include swbuf.h,1.17,1.18

sword@www.crosswire.org sword@www.crosswire.org
Sun, 13 Jul 2003 09:00:48 -0700


Update of /usr/local/cvsroot/sword/include
In directory www:/tmp/cvs-serv8500

Modified Files:
	swbuf.h 
Log Message:
Martin:updated docs


Index: swbuf.h
===================================================================
RCS file: /usr/local/cvsroot/sword/include/swbuf.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- swbuf.h	5 Jul 2003 01:16:46 -0000	1.17
+++ swbuf.h	13 Jul 2003 16:00:46 -0000	1.18
@@ -129,6 +129,7 @@
  	* SWBuf::append - appends a value to the current value of this SWBuf.
 	* If the allocated memory is not enough, it will be resized accordingly.
 	* @param str Append this.
+	* @param max Append only max chars.
  	*/
 	void append(const char *str, int max = -1);
 
@@ -136,6 +137,7 @@
 	* SWBuf::append - appends a value to the current value of this SWBuf
 	* If the allocated memory is not enough, it will be resized accordingly.
 	* @param str Append this.
+	* @param max Append only max chars.
 	*/
 	inline void append(const SWBuf &str, int max = -1) { append(str.c_str(), max); }