summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-08-14 14:49:07 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-08-14 14:49:07 (GMT)
commit9e6be9a8ae24b788cf2463a703bda48cbd77c773 (patch)
treefed426d0d7216311cbd009a1fcd2786176478b5e /src/config.h
parent6e28050ef5483e624122b0bacb998c40664f78ee (diff)
downloadDoxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.zip
Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.tar.gz
Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.tar.bz2
Release-1.5.9-20090814
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/config.h b/src/config.h
index f87b2ba..8ff2624 100644
--- a/src/config.h
+++ b/src/config.h
@@ -142,7 +142,7 @@ class ConfigList : public ConfigOption
t << convertToComment(m_doc);
t << endl;
}
- t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "= ";
+ t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "=";
writeStringList(t,m_value);
t << "\n";
}
@@ -183,7 +183,7 @@ class ConfigEnum : public ConfigOption
t << convertToComment(m_doc);
t << endl;
}
- t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "= ";
+ t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "=";
writeStringValue(t,m_value);
t << "\n";
}
@@ -225,7 +225,7 @@ class ConfigString : public ConfigOption
t << convertToComment(m_doc);
t << endl;
}
- t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "= ";
+ t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "=";
writeStringValue(t,m_value);
t << "\n";
}
@@ -269,7 +269,7 @@ class ConfigInt : public ConfigOption
t << convertToComment(m_doc);
t << endl;
}
- t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "= ";
+ t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "=";
if (upd && !m_valueString.isEmpty())
{
writeStringValue(t,m_valueString);
@@ -317,7 +317,7 @@ class ConfigBool : public ConfigOption
t << convertToComment(m_doc);
t << endl;
}
- t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "= ";
+ t << m_name << m_spaces.left(MAX_OPTION_LENGTH-m_name.length()) << "=";
if (upd && !m_valueString.isEmpty())
{
writeStringValue(t,m_valueString);