diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:06:03 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:27:39 +0900 |
commit | 291b4f5da2f98283b7c98ee90401df7c3cb34dad (patch) | |
tree | a28eb1a3c46756a6c6dbf3cdaa7bd88807d237c8 /src/modules/objects/class_listview.cpp | |
parent | 1f1b292b68c4fe5d4843dba00eff77b431e6bc12 (diff) | |
download | kvirc-291b4f5da2f98283b7c98ee90401df7c3cb34dad.tar.gz kvirc-291b4f5da2f98283b7c98ee90401df7c3cb34dad.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/objects/class_listview.cpp')
-rw-r--r-- | src/modules/objects/class_listview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/objects/class_listview.cpp b/src/modules/objects/class_listview.cpp index c23abd5..34a66b5 100644 --- a/src/modules/objects/class_listview.cpp +++ b/src/modules/objects/class_listview.cpp @@ -66,7 +66,7 @@ Adds a width pixels wide column with the column header label to the list view. !fn: $setSorting(<column:integer>,<bAscending:boolean>) - Sets the list view to be sorted by column column in ascending order if ascending is 1 or descending order if it is FALSE. + Sets the list view to be sorted by column column in ascending order if ascending is 1 or descending order if it is false. If column is -1, sorting is disabled and the user cannot sort columns by clicking on the column headers !fn: $hideListViewHeader() @@ -510,7 +510,7 @@ KviKvsMdmListView::KviKvsMdmListView(TQWidget * par,const char * name,KviKvsObje { m_pParentScript=parent; setAcceptDrops(true); - viewport()->setAcceptDrops( TRUE ); + viewport()->setAcceptDrops( true ); } KviKvsMdmListView::~KviKvsMdmListView() |