summaryrefslogtreecommitdiffstats
path: root/lib/kofficecore/KoMainWindow.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 18:11:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-03 19:23:45 +0900
commit0bd9d5459891e6fb17ee6802878f85e217cb9f54 (patch)
tree962f6ea26d1fab041fe3476fbbd64132ab8ada1b /lib/kofficecore/KoMainWindow.h
parentcb258b7e39ffa5662b57e7d9006e69172a378d7e (diff)
downloadkoffice-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/KoMainWindow.h')
-rw-r--r--lib/kofficecore/KoMainWindow.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/kofficecore/KoMainWindow.h b/lib/kofficecore/KoMainWindow.h
index 9befc71e8..06269db12 100644
--- a/lib/kofficecore/KoMainWindow.h
+++ b/lib/kofficecore/KoMainWindow.h
@@ -106,7 +106,7 @@ public:
void showToolbar( const char * tbName, bool shown );
/**
- * @return TRUE if the toolbar @p tbName is visible
+ * @return true if the toolbar @p tbName is visible
*/
bool toolbarIsVisible(const char *tbName);
@@ -130,7 +130,7 @@ public:
* Load the desired document and show it.
* @param url the URL to open
*
- * @return TRUE on success.
+ * @return true on success.
*/
virtual bool openDocument( const KURL & url );
@@ -309,11 +309,11 @@ protected: // protected methods are mostly for koshell, it's the only one derivi
/**
* Saves the document, asking for a filename if necessary.
*
- * @param saveas if set to TRUE the user is always prompted for a filename
+ * @param saveas if set to true the user is always prompted for a filename
*
- * @param silent if set to TRUE rootDocument()->setTitleModified will not be called.
+ * @param silent if set to true rootDocument()->setTitleModified will not be called.
*
- * @return TRUE on success, false on error or cancel
+ * @return true on success, false on error or cancel
* (don't display anything in this case, the error dialog box is also implemented here
* but restore the original URL in slotFileSaveAs)
*/