diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-08 12:59:07 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-10 17:35:38 +0900 |
commit | d2d30bfbef26707f9158cbc31d5763a9a1d4ab2d (patch) | |
tree | 6d2d4502d6fbe4d6810bfb7bcf297cbf995d3db8 /parts/doxygen/config.h | |
parent | b9618de13e8f38c3558e9ed393a75c1f13af665c (diff) | |
download | tdevelop-r14.1.4.tar.gz tdevelop-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5198c9d3ac02aa9c7949f49e3cf374f683facb18)
Diffstat (limited to 'parts/doxygen/config.h')
-rw-r--r-- | parts/doxygen/config.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/parts/doxygen/config.h b/parts/doxygen/config.h index 2486956e..d48e9888 100644 --- a/parts/doxygen/config.h +++ b/parts/doxygen/config.h @@ -505,7 +505,7 @@ class Config /*! @} */ /*! Writes a template configuration to stream \a t. If \a shortIndex - * is \c TRUE the description of each configuration option will + * is \c true the description of each configuration option will * be omitted. */ void writeTemplate(TQTextStream &t,bool shortIndex,bool updateOnly); @@ -533,13 +533,13 @@ class Config void init(); /*! Parse a configuration data in string \a str. - * \returns TRUE if successful, or FALSE if the string could not be + * \returns true if successful, or false if the string could not be * parsed. */ bool parseString(const char *fn,const char *str); /*! Parse a configuration file with name \a fn. - * \returns TRUE if successful, FALSE if the file could not be + * \returns true if successful, false if the file could not be * opened or read. */ bool parse(const char *fn); @@ -556,9 +556,9 @@ class Config m_options = new TQPtrList<ConfigOption>; m_obsolete = new TQPtrList<ConfigOption>; m_dict = new TQDict<ConfigOption>(257); - m_options->setAutoDelete(TRUE); - m_obsolete->setAutoDelete(TRUE); - m_initialized = FALSE; + m_options->setAutoDelete(true); + m_obsolete->setAutoDelete(true); + m_initialized = false; create(); } ~Config() |