]> git.saurik.com Git - wxWidgets.git/commitdiff
escape '@' symbols in the docs
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 25 Aug 2008 23:25:51 +0000 (23:25 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 25 Aug 2008 23:25:51 +0000 (23:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/html/htmprint.h
interface/wx/richtext/richtextprint.h

index bb45e78381ea0ca381f0fbb207d7bae0c3a33be1..ca104ba51d350ac9294042dfe3c4083110795d62 100644 (file)
@@ -196,11 +196,11 @@ public:
 
     /**
         Set page footer. The following macros can be used inside it:
-         @DATE@ is replaced by the current date in default format
-         @PAGENUM@ is replaced by page number
-         @PAGESCNT@ is replaced by total number of pages
-         @TIME@ is replaced by the current time in default format
-         @TITLE@ is replaced with the title of the document
+         @@DATE@ is replaced by the current date in default format
+         @@PAGENUM@ is replaced by page number
+         @@PAGESCNT@ is replaced by total number of pages
+         @@TIME@ is replaced by the current time in default format
+         @@TITLE@ is replaced with the title of the document
         
         @param footer
             HTML text to be used as footer.
@@ -211,11 +211,11 @@ public:
 
     /**
         Set page header. The following macros can be used inside it:
-         @DATE@ is replaced by the current date in default format
-         @PAGENUM@ is replaced by page number
-         @PAGESCNT@ is replaced by total number of pages
-         @TIME@ is replaced by the current time in default format
-         @TITLE@ is replaced with the title of the document
+         @@DATE@ is replaced by the current date in default format
+         @@PAGENUM@ is replaced by page number
+         @@PAGESCNT@ is replaced by total number of pages
+         @@TIME@ is replaced by the current time in default format
+         @@TITLE@ is replaced with the title of the document
         
         @param header
             HTML text to be used as header.
@@ -265,11 +265,11 @@ public:
 
     /**
         Set page footer. The following macros can be used inside it:
-         @DATE@ is replaced by the current date in default format
-         @PAGENUM@ is replaced by page number
-         @PAGESCNT@ is replaced by total number of pages
-         @TIME@ is replaced by the current time in default format
-         @TITLE@ is replaced with the title of the document
+         @@DATE@ is replaced by the current date in default format
+         @@PAGENUM@ is replaced by page number
+         @@PAGESCNT@ is replaced by total number of pages
+         @@TIME@ is replaced by the current time in default format
+         @@TITLE@ is replaced with the title of the document
         
         @param footer
             HTML text to be used as footer.
@@ -280,11 +280,11 @@ public:
 
     /**
         Set page header. The following macros can be used inside it:
-         @DATE@ is replaced by the current date in default format
-         @PAGENUM@ is replaced by page number
-         @PAGESCNT@ is replaced by total number of pages
-         @TIME@ is replaced by the current time in default format
-         @TITLE@ is replaced with the title of the document
+         @@DATE@ is replaced by the current date in default format
+         @@PAGENUM@ is replaced by page number
+         @@PAGESCNT@ is replaced by total number of pages
+         @@TIME@ is replaced by the current time in default format
+         @@TITLE@ is replaced with the title of the document
         
         @param header
             HTML text to be used as header.
index 1eb02d7c9d8270b7b7b28790a619e82dac16eb61..b47311c78f05ba8fadda42c5abe431603393115c 100644 (file)
     which will
     be substituted for the actual values during printing and preview.
 
-     @DATE@: the current date.
-     @PAGESCNT@: the total number of pages.
-     @PAGENUM@: the current page number.
-     @TIME@: the current time.
-     @TITLE@: the title of the document, as passed to the wxRichTextPrinting or
+     @@DATE@: the current date.
+     @@PAGESCNT@: the total number of pages.
+     @@PAGENUM@: the current page number.
+     @@TIME@: the current time.
+     @@TITLE@: the title of the document, as passed to the wxRichTextPrinting or
     wxRichTextLayout constructor.
 
     @library{wxrichtext}