diff options
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 ) ); } |