summaryrefslogtreecommitdiffstats
path: root/smb4k/searchdlg/smb4ksearchdialogitem.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 13:43:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-23 11:15:45 +0900
commita8d22ee1a24285c8e493489741b712e6e075da04 (patch)
tree1d7a010b684d2f76550c7c0521c5888a98361b6d /smb4k/searchdlg/smb4ksearchdialogitem.h
parent69645a9e6d89ac4de5adf1df868f6cd12617390c (diff)
downloadsmb4k-r14.1.4.tar.gz
smb4k-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 ceb2c2e93f81f1222f20decc7efbe6d4f2ddf2cf)
Diffstat (limited to 'smb4k/searchdlg/smb4ksearchdialogitem.h')
-rw-r--r--smb4k/searchdlg/smb4ksearchdialogitem.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/smb4k/searchdlg/smb4ksearchdialogitem.h b/smb4k/searchdlg/smb4ksearchdialogitem.h
index 75449a1..463caa5 100644
--- a/smb4k/searchdlg/smb4ksearchdialogitem.h
+++ b/smb4k/searchdlg/smb4ksearchdialogitem.h
@@ -83,11 +83,11 @@ class Smb4KSearchDialogItem : public TDEListViewItem
Smb4KHostItem *hostItem() { return &m_item; }
/**
- * This function returns TRUE, if the item is regular, that means it
+ * This function returns true, if the item is regular, that means it
* represents a host. If it represents a failed search, it returns
- * FALSE.
+ * false.
*
- * @returns TRUE is the item is a regular one.
+ * @returns true is the item is a regular one.
*/
bool isRegular() { return m_is_regular; }
@@ -96,14 +96,14 @@ class Smb4KSearchDialogItem : public TDEListViewItem
* known to the application, i.e. it is in the list of hosts. It will set
* the pixmap accordingly and sets m_is_known.
*
- * @param known Should be TRUE is the host is known.
+ * @param known Should be true is the host is known.
*/
void setKnown( bool known );
/**
- * This function returns TRUE, if the item is already known by the scanner.
+ * This function returns true, if the item is already known by the scanner.
*
- * @returns TRUE is the item is already known.
+ * @returns true is the item is already known.
*/
bool isKnown() { return m_is_known; }
@@ -116,7 +116,7 @@ class Smb4KSearchDialogItem : public TDEListViewItem
/**
* Reimplemented from TQListViewItem. It is used for sorting and compares the
- * serial numbers of this item and @p item. If @p ascending is TRUE and the
+ * serial numbers of this item and @p item. If @p ascending is true and the
* serial number of this item is greater than that of @p item, it will be inserted
* before @p item and else it will be inserted after. In this implementation,
* @p col is *not* used.
@@ -126,7 +126,7 @@ class Smb4KSearchDialogItem : public TDEListViewItem
* @param col The column that should be used for sorting. It is
* not used in this implementation.
*
- * @param ascending Sort ascending if TRUE or descending if FALSE.
+ * @param ascending Sort ascending if true or descending if false.
*
* @returns 0 if serialNumber() and @p item->serialNumber() are equal and != 0 if
* they are not. Which value and especially which algebraic sign is returned depends
@@ -141,12 +141,12 @@ class Smb4KSearchDialogItem : public TDEListViewItem
Smb4KHostItem m_item;
/**
- * TRUE, if we have a regular item
+ * true, if we have a regular item
*/
bool m_is_regular;
/**
- * TRUE is the item is known
+ * true is the item is known
*/
bool m_is_known;