summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-10-21 18:02:53 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-10-21 18:02:53 (GMT)
commitaa58eb72e74a736d7f05328466858ac179918649 (patch)
treef5aef68ee03709376658e93142ca5df6850e649d /doc
parent4f13c95eed55e8b0d989f2eeeb0ab72bd70f2b38 (diff)
downloadDoxygen-aa58eb72e74a736d7f05328466858ac179918649.zip
Doxygen-aa58eb72e74a736d7f05328466858ac179918649.tar.gz
Doxygen-aa58eb72e74a736d7f05328466858ac179918649.tar.bz2
Release-1.2.11-20011021
Diffstat (limited to 'doc')
-rw-r--r--doc/install.doc2
-rw-r--r--doc/maintainers.txt1
-rw-r--r--doc/translator.pl6
3 files changed, 8 insertions, 1 deletions
diff --git a/doc/install.doc b/doc/install.doc
index d32e762..1025961 100644
--- a/doc/install.doc
+++ b/doc/install.doc
@@ -520,7 +520,7 @@ the <code>bin</code> directory of the distribution to the path.
For running doxywizard you need to install the non-commercial version of
the Qt library first. This library can be downloaded from
-http://www.trolltech.com/products/download/freelicense/noncommercial-dl.html
+http://www.trolltech.com/products/download/qt-win-noncomm.html
\subsection build_tools Tools used to develop doxygen
diff --git a/doc/maintainers.txt b/doc/maintainers.txt
index 646f6c1..d0a7188 100644
--- a/doc/maintainers.txt
+++ b/doc/maintainers.txt
@@ -5,6 +5,7 @@ Brazilian
Fabio "FJTC" Jun Takada Chino: chino@grad.icmc.sc.usp.br
Chinese
+Wei Liu: liuwei@asiainfo.com
Wang Weihan: wangweihan@capinfo.com.cn
Croatian
diff --git a/doc/translator.pl b/doc/translator.pl
index e031674..a3021fa 100644
--- a/doc/translator.pl
+++ b/doc/translator.pl
@@ -77,6 +77,11 @@
# the simplified language.doc from the template was moved to
# the separate function CopyTemplateToLanguageDoc().
#
+# 2001/10/17
+# - Minor update of GetInfoFrom() to ignore spaces between the
+# method identifier and the opening parenthesis to match better
+# the method prototype with the one in the translator.h.
+#
################################################################
use 5.005;
@@ -316,6 +321,7 @@ sub GetInfoFrom ##{{{
$cont =~ s{^\s+}{}s;
$cont =~ s{\s+$}{}s;
+ $cont =~ s{\s+\(}{(}g;
$cont =~ s{\)\s*}{)\n}g;
# Split the string and add it to the ouptut list.