summaryrefslogtreecommitdiffstats
path: root/src/pre.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/pre.l')
-rw-r--r--src/pre.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pre.l b/src/pre.l
index 34f187f..324fad5 100644
--- a/src/pre.l
+++ b/src/pre.l
@@ -35,6 +35,7 @@
#include <qregexp.h>
#include <qfileinfo.h>
+#include "pre.h"
#include "constexp.h"
#include "define.h"
#include "doxygen.h"
@@ -1459,7 +1460,7 @@ BN [ \t\r\n]
if (!g_quoteArg) g_defText+=' ';
g_defText+='@';
QCString numStr;
- numStr.setNum(*n);
+ numStr.sprintf("%d",*n);
g_defText+=numStr;
if (!g_quoteArg) g_defText+=' ';
}