diff options
Diffstat (limited to 'smb4k/searchdlg/smb4ksearchdialogitem.h')
-rw-r--r-- | smb4k/searchdlg/smb4ksearchdialogitem.h | 20 |
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; |