summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
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.