diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 18:11:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-03 19:23:45 +0900 |
commit | 0bd9d5459891e6fb17ee6802878f85e217cb9f54 (patch) | |
tree | 962f6ea26d1fab041fe3476fbbd64132ab8ada1b /lib/kofficecore/KoQueryTrader.h | |
parent | cb258b7e39ffa5662b57e7d9006e69172a378d7e (diff) | |
download | koffice-r14.1.4.tar.gz koffice-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 cf85b9c285a2b9baa87c9d0cb9d683b48e82a475)
Diffstat (limited to 'lib/kofficecore/KoQueryTrader.h')
-rw-r--r-- | lib/kofficecore/KoQueryTrader.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kofficecore/KoQueryTrader.h b/lib/kofficecore/KoQueryTrader.h index 511bd9188..a9841fe64 100644 --- a/lib/kofficecore/KoQueryTrader.h +++ b/lib/kofficecore/KoQueryTrader.h @@ -46,7 +46,7 @@ public: KService::Ptr service() const { return m_service; } /** - * @return TRUE if the service pointer is null + * @return true if the service pointer is null */ bool isEmpty() const { return m_service == 0L; } @@ -61,7 +61,7 @@ public: TQStringList mimeTypes() const { return m_service->serviceTypes(); } /** - * @return TRUE if the document can handle the requested mimetype. + * @return true if the document can handle the requested mimetype. */ bool supportsMimeType( const TQString & _mimetype ) const { return mimeTypes().contains( _mimetype ); } @@ -149,13 +149,13 @@ public: TQString available; /** - * @return TRUE if the filter can import the requested mimetype. + * @return true if the filter can import the requested mimetype. */ bool imports( const TQString& _mimetype ) const { return ( import.contains( _mimetype ) ); } /** - * @return TRUE if the filter can export the requested mimetype. + * @return true if the filter can export the requested mimetype. */ bool exports( const TQString& _m ) const { return ( export_.contains( _m ) ); } |