summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-05-19 12:11:23 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-05-19 12:11:23 (GMT)
commit7e1fa1f27b1d85172af518acc24b8bc68a0f1b29 (patch)
tree58d7a64919b99cc76fdc7120ae5d0407f3163a67 /doc
parentc11926b2549660b7eb6b73aa4bf2096e56a6f8dd (diff)
downloadDoxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.zip
Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.tar.gz
Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.tar.bz2
Release-1.8.1
Diffstat (limited to 'doc')
-rw-r--r--doc/doxygen_manual.css61
-rw-r--r--doc/markdown.doc3
-rw-r--r--doc/preprocessing.doc4
3 files changed, 52 insertions, 16 deletions
diff --git a/doc/doxygen_manual.css b/doc/doxygen_manual.css
index eea5d47..c2b0029 100644
--- a/doc/doxygen_manual.css
+++ b/doc/doxygen_manual.css
@@ -149,20 +149,55 @@ dl.el {
margin-left: -1cm;
}
-.fragment {
- font-family: monospace, fixed;
- font-size: 105%;
-}
-
pre.fragment {
- border: 1px solid #D5D5D5;
- background-color: #FCFCFC;
- padding: 4px 6px;
- margin: 4px 8px 4px 2px;
- overflow: auto;
- word-wrap: break-word;
- font-size: 9pt;
- line-height: 125%;
+ border: 1px solid #C4CFE5;
+ background-color: #FBFCFD;
+ padding: 4px 6px;
+ margin: 4px 8px 4px 2px;
+ overflow: auto;
+ word-wrap: break-word;
+ font-size: 9pt;
+ line-height: 125%;
+ font-family: monospace, fixed;
+ font-size: 105%;
+}
+
+div.fragment {
+ padding: 4px;
+ margin: 4px;
+ background-color: #FCFCFC;
+ border: 1px solid #D5D5D5;
+}
+
+div.line {
+ font-family: monospace, fixed;
+ font-size: 13px;
+ line-height: 1.0;
+ text-wrap: unrestricted;
+ white-space: -moz-pre-wrap; /* Moz */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ white-space: pre-wrap; /* CSS3 */
+ word-wrap: break-word; /* IE 5.5+ */
+ text-indent: -53px;
+ padding-left: 53px;
+ padding-bottom: 0px;
+ margin: 0px;
+}
+
+span.lineno {
+ padding-right: 4px;
+ text-align: right;
+ border-right: 2px solid #0F0;
+ background-color: #E8E8E8;
+ white-space: pre;
+}
+span.lineno a {
+ background-color: #D8D8D8;
+}
+
+span.lineno a:hover {
+ background-color: #C8C8C8;
}
div.ah {
diff --git a/doc/markdown.doc b/doc/markdown.doc
index 30fca62..8bb972e 100644
--- a/doc/markdown.doc
+++ b/doc/markdown.doc
@@ -72,7 +72,8 @@ Level 1 or 2 headers can be made as the follows
-------------------------
A header is followed by a line containing only ='s or -'s.
-Note that the exact amount of ='s or -'s is not important.
+Note that the exact amount of ='s or -'s is not important as long as
+there are at least two.
Alternatively, you can use #'s at the start of a line to make a header.
The number of #'s at the start of the line determines the level (up to 6 levels are supported).
diff --git a/doc/preprocessing.doc b/doc/preprocessing.doc
index 49dd0f1..db5418f 100644
--- a/doc/preprocessing.doc
+++ b/doc/preprocessing.doc
@@ -75,8 +75,8 @@ the \ref cfg_predefined "PREDEFINED" or
\ref cfg_expand_as_defined "EXPAND_AS_DEFINED" tag.
A typically example where some help from the preprocessor is needed is
-when dealing with Microsoft's __declspec language extension. Here is an
-example function.
+when dealing with Microsoft's __declspec language extension. The same goes
+for GNU's __attribute__ extension. Here is an example function.
\verbatim
extern "C" void __declspec(dllexport) ErrorMsg( String aMessage,...);