diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:36:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:36:24 (GMT) |
commit | a54eecdf4b3c961ff41bc5d3ea6f21713e08f903 (patch) | |
tree | c32965e6b0858adc9a1f108b7b4d909568efd52e /src/definition.h | |
parent | 1d4e23de96d6e6065089a909ccba321fe5fa7f28 (diff) | |
download | Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.zip Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.tar.gz Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.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; } |