diff options
author | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:36:24 (GMT) |
---|---|---|
committer | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:36:24 (GMT) |
commit | d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b (patch) | |
tree | c32965e6b0858adc9a1f108b7b4d909568efd52e /src/definition.h | |
parent | 79bf453de665e12ad859d8e24ddbec7ffbdb8e24 (diff) | |
download | Doxygen-d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b.zip Doxygen-d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b.tar.gz Doxygen-d4bdeb54df648007d9a2b4a9ec5c2ef3b84f1a3b.tar.bz2 |
mods for doxygen-0.49-991003
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/definition.h b/src/definition.h index 40e8316..87b3c18 100644 --- a/src/definition.h +++ b/src/definition.h @@ -50,19 +50,7 @@ class Definition /*! sets the brief description of this definition to \a b. * A dot is added to the sentence if not available. */ - void setBriefDescription(const char *b) - { - brief=((QCString) b).stripWhiteSpace(); - int bl=brief.length(); - if (bl>0) // add puntuation if needed - { - switch(brief.at(bl-1)) - { - case '.': case '!': case '?': break; - default: brief+='.'; break; - } - } - } + void setBriefDescription(const char *b); /*! returns TRUE iff the definition is documented */ virtual bool hasDocumentation() { return !doc.isNull() || !brief.isNull() || Config::extractAllFlag; } |