fixed syntax errors in documentation (once again...)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2002-10-20 13:47:12 +00:00
parent 9891e5609d
commit 2f4ed3b275
6 changed files with 18 additions and 18 deletions

View File

@@ -2119,8 +2119,8 @@ This macro is defined for the platforms with a native 64 bit integer type and
allows to define 64 bit compile time constants:
\begin{verbatim}
#ifdef wxLongLong\_t
wxLongLong\_t ll = wxLL(0x1234567890abcdef);
#ifdef wxLongLong_t
wxLongLong_t ll = wxLL(0x1234567890abcdef);
#endif
\end{verbatim}
@@ -2135,8 +2135,8 @@ which 64 bit integer numbers (i.e. those of type {\tt wxLongLong\_t}) can be
printed. Example of using it:
\begin{verbatim}
#ifdef wxLongLong\_t
wxLongLong\_t ll = wxLL(0x1234567890abcdef);
#ifdef wxLongLong_t
wxLongLong_t ll = wxLL(0x1234567890abcdef);
printf("Long long = %" wxLongLongFmtSpec "x\n", ll);
#endif
\end{verbatim}