diff options
Diffstat (limited to 'tqt/tqextscintillalexercpp.h')
-rw-r--r-- | tqt/tqextscintillalexercpp.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/tqt/tqextscintillalexercpp.h b/tqt/tqextscintillalexercpp.h index 36e024f..cf09372 100644 --- a/tqt/tqextscintillalexercpp.h +++ b/tqt/tqextscintillalexercpp.h @@ -111,10 +111,10 @@ public: //! Construct a TQextScintillaLexerCPP with parent \a parent and name //! \a name. \a parent is typically the TQextScintilla instance. - //! \a caseInsensitiveKeywords is TRUE if the lexer ignores the case of + //! \a caseInsensitiveKeywords is true if the lexer ignores the case of //! keywords. TQextScintillaLexerCPP(TQObject *parent = 0,const char *name = 0, - bool caseInsensitiveKeywords = FALSE); + bool caseInsensitiveKeywords = false); //! Destroys the TQextScintillaLexerCPP instance. virtual ~TQextScintillaLexerCPP(); @@ -178,59 +178,59 @@ public: //! propertyChanged() signal as required. void refreshProperties(); - //! Returns TRUE if "} else {" lines can be folded. + //! Returns true if "} else {" lines can be folded. //! //! \sa setFoldAtElse() bool foldAtElse() const; - //! Returns TRUE if multi-line comment blocks can be folded. + //! Returns true if multi-line comment blocks can be folded. //! //! \sa setFoldComments() bool foldComments() const; - //! Returns TRUE if trailing blank lines are included in a fold block. + //! Returns true if trailing blank lines are included in a fold block. //! //! \sa setFoldCompact() bool foldCompact() const; - //! Returns TRUE if preprocessor blocks can be folded. + //! Returns true if preprocessor blocks can be folded. //! //! \sa setFoldPreprocessor() bool foldPreprocessor() const; - //! Returns TRUE if preprocessor lines (after the preprocessor + //! Returns true if preprocessor lines (after the preprocessor //! directive) are styled. //! //! \sa setStylePreprocessor() bool stylePreprocessor() const; public slots: - //! If \a fold is TRUE then "} else {" lines can be folded. The - //! default is FALSE. + //! If \a fold is true then "} else {" lines can be folded. The + //! default is false. //! //! \sa foldAtElse() virtual void setFoldAtElse(bool fold); - //! If \a fold is TRUE then multi-line comment blocks can be folded. - //! The default is FALSE. + //! If \a fold is true then multi-line comment blocks can be folded. + //! The default is false. //! //! \sa foldComments() virtual void setFoldComments(bool fold); - //! If \a fold is TRUE then trailing blank lines are included in a fold - //! block. The default is TRUE. + //! If \a fold is true then trailing blank lines are included in a fold + //! block. The default is true. //! //! \sa foldCompact() virtual void setFoldCompact(bool fold); - //! If \a fold is TRUE then preprocessor blocks can be folded. The - //! default is TRUE. + //! If \a fold is true then preprocessor blocks can be folded. The + //! default is true. //! //! \sa foldPreprocessor() virtual void setFoldPreprocessor(bool fold); - //! If \a style is TRUE then preprocessor lines (after the preprocessor - //! directive) are styled. The default is FALSE. + //! If \a style is true then preprocessor lines (after the preprocessor + //! directive) are styled. The default is false. //! //! \sa stylePreprocessor() virtual void setStylePreprocessor(bool style); @@ -238,14 +238,14 @@ public slots: protected: //! The lexer's properties are read from the settings \a qs. \a prefix //! (which has a trailing '/') should be used as a prefix to the key of - //! each setting. TRUE is returned if there is no error. + //! each setting. true is returned if there is no error. //! //! \sa writeProperties() bool readProperties(TQSettings &qs,const TQString &prefix); //! The lexer's properties are written to the settings \a qs. //! \a prefix (which has a trailing '/') should be used as a prefix to - //! the key of each setting. TRUE is returned if there is no error. + //! the key of each setting. true is returned if there is no error. //! //! \sa readProperties() bool writeProperties(TQSettings &qs,const TQString &prefix) const; |