summaryrefslogtreecommitdiff
path: root/src/company_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-02-10 21:06:05 +0000
committerrubidium <rubidium@openttd.org>2010-02-10 21:06:05 +0000
commit7a73a7490d6c2aed45a9773d5399416a29a4cc4e (patch)
tree7da7983dd116cdee4f82c4553a2482f37b514b5a /src/company_gui.cpp
parent249acc9e4f22d6cc503db857518d0f95a4edec07 (diff)
downloadopenttd-7a73a7490d6c2aed45a9773d5399416a29a4cc4e.tar.xz
(svn r19090) -Codechange: some comment coding style fixes
Diffstat (limited to 'src/company_gui.cpp')
-rw-r--r--src/company_gui.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/company_gui.cpp b/src/company_gui.cpp
index 04795a512..ce9242c2b 100644
--- a/src/company_gui.cpp
+++ b/src/company_gui.cpp
@@ -1328,25 +1328,25 @@ public:
case SCMFW_WIDGET_HAS_MOUSTACHE_EARRING:
- if (this->is_female) { /* Only for female faces */
+ if (this->is_female) { // Only for female faces
this->DrawFaceStringLabel(SCMFW_WIDGET_HAS_MOUSTACHE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_HAS_TIE_EARRING, this->ge), true);
- } else { /* Only for male faces */
+ } else { // Only for male faces
this->DrawFaceStringLabel(SCMFW_WIDGET_HAS_MOUSTACHE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_HAS_MOUSTACHE, this->ge), true);
}
break;
case SCMFW_WIDGET_TIE_EARRING:
- if (this->is_female) { /* Only for female faces */
+ if (this->is_female) { // Only for female faces
this->DrawFaceStringLabel(SCMFW_WIDGET_TIE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_TIE_EARRING, this->ge), false);
- } else { /* Only for male faces */
+ } else { // Only for male faces
this->DrawFaceStringLabel(SCMFW_WIDGET_TIE_EARRING, GetCompanyManagerFaceBits(this->face, CMFV_TIE_EARRING, this->ge), false);
}
break;
case SCMFW_WIDGET_LIPS_MOUSTACHE:
- if (this->is_moust_male) { /* Only for male faces with moustache */
+ if (this->is_moust_male) { // Only for male faces with moustache
this->DrawFaceStringLabel(SCMFW_WIDGET_LIPS_MOUSTACHE, GetCompanyManagerFaceBits(this->face, CMFV_MOUSTACHE, this->ge), false);
- } else { /* Only for female faces or male faces without moustache */
+ } else { // Only for female faces or male faces without moustache
this->DrawFaceStringLabel(SCMFW_WIDGET_LIPS_MOUSTACHE, GetCompanyManagerFaceBits(this->face, CMFV_LIPS, this->ge), false);
}
break;