]> git.lyx.org Git - lyx.git/blobdiff - src/support/tostr.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / tostr.C
index 2442699f57d105019ee757710204e73130da4ee2..de9628886aedfee637867eed20ec104dac43e39a 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file tostr.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
  
 #include "Lsstream.h"
@@ -18,6 +28,14 @@ string const tostr(unsigned int i)
 }
 
 
+string const tostr(long int i)
+{
+       ostringstream os;
+       os << i;
+       return STRCONV(os.str());
+}
+
+
 string const tostr(double d)
 {
        ostringstream os;