summaryrefslogtreecommitdiff
path: root/src/industry_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-07-10 18:37:54 +0000
committeralberth <alberth@openttd.org>2012-07-10 18:37:54 +0000
commit2ab7c82b312c4bb87c7e8c1eec6aa6a1a9b3595f (patch)
treeaa38cd351ee4ae8517b20399dbef3fdd34313ca8 /src/industry_gui.cpp
parentad48f766f76ef0cdd7fd7eee8648bbfa3acc2461 (diff)
downloadopenttd-2ab7c82b312c4bb87c7e8c1eec6aa6a1a9b3595f.tar.xz
(svn r24395) -Doc: Fixed argument references in @param descriptions.
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r--src/industry_gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp
index 5a180bef5..49c0afcfa 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -1548,7 +1548,7 @@ struct CargoesField {
/**
* Make a piece of cargo column.
* @param cargoes Array of #CargoID (may contain #INVALID_CARGO).
- * @param length Number of cargoes in #cargoes.
+ * @param length Number of cargoes in \a cargoes.
* @param count Number of cargoes to display (should be at least the number of valid cargoes, or \c -1 to let the method compute it).
* @param top_end This is the first cargo field of this column.
* @param bottom_end This is the last cargo field of this column.
@@ -1576,7 +1576,7 @@ struct CargoesField {
/**
* Make a field displaying cargo type names.
* @param cargoes Array of #CargoID (may contain #INVALID_CARGO).
- * @param length Number of cargoes in #cargoes.
+ * @param length Number of cargoes in \a cargoes.
* @param left_align ALign texts to the left (else to the right).
*/
void MakeCargoLabel(const CargoID *cargoes, uint length, bool left_align)
@@ -2158,7 +2158,7 @@ struct IndustryCargoesWindow : public Window {
/**
* Count how many industries have accepted cargoes in common with one of the supplied set.
* @param cargoes Cargoes to search.
- * @param length Number of cargoes in #cargoes.
+ * @param length Number of cargoes in \a cargoes.
* @return Number of industries that have an accepted cargo in common with the supplied set.
*/
static int CountMatchingAcceptingIndustries(const CargoID *cargoes, uint length)
@@ -2176,7 +2176,7 @@ struct IndustryCargoesWindow : public Window {
/**
* Count how many industries have produced cargoes in common with one of the supplied set.
* @param cargoes Cargoes to search.
- * @param length Number of cargoes in #cargoes.
+ * @param length Number of cargoes in \a cargoes.
* @return Number of industries that have a produced cargo in common with the supplied set.
*/
static int CountMatchingProducingIndustries(const CargoID *cargoes, uint length)