summaryrefslogtreecommitdiffstats
path: root/src/ksvnwidgets
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-03-16 14:46:59 +0900
committerMichele Calgaro <[email protected]>2025-03-16 14:56:22 +0900
commit76c67c49ce863d214f4a365b443663597e4f6ff9 (patch)
tree7beed17146d738067d789bc12f7603249f4f8e73 /src/ksvnwidgets
parent14c622e80a2f4e10689c9548f0b26e7b6e815cbf (diff)
downloadtdesvn-76c67c49ce863d214f4a365b443663597e4f6ff9.tar.gz
tdesvn-76c67c49ce863d214f4a365b443663597e4f6ff9.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/ksvnwidgets')
-rw-r--r--src/ksvnwidgets/depthselector.cpp2
-rw-r--r--src/ksvnwidgets/logmsg_impl.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ksvnwidgets/depthselector.cpp b/src/ksvnwidgets/depthselector.cpp
index 78c1a7d..512e8c2 100644
--- a/src/ksvnwidgets/depthselector.cpp
+++ b/src/ksvnwidgets/depthselector.cpp
@@ -39,7 +39,7 @@ DepthSelector::DepthSelector(TQWidget *parent, const char *name)
m_DepthCombo=0;
DepthFormLayout->removeItem(m_leftspacer);
m_recurse = new TQCheckBox( this, "m_RecursiveButton" );
- m_recurse->setChecked( TRUE );
+ m_recurse->setChecked( true );
m_recurse->setText(i18n( "Recursive" ));
DepthFormLayout->addWidget( m_recurse );
m_recurse->setSizePolicy(TQSizePolicy::Fixed,TQSizePolicy::Fixed);
diff --git a/src/ksvnwidgets/logmsg_impl.cpp b/src/ksvnwidgets/logmsg_impl.cpp
index f8ce4c7..f4debfb 100644
--- a/src/ksvnwidgets/logmsg_impl.cpp
+++ b/src/ksvnwidgets/logmsg_impl.cpp
@@ -487,7 +487,7 @@ Logmsg_impl::logActionEntry::logActionEntry()
SvnCheckListItem::SvnCheckListItem(TQListView*parent,const Logmsg_impl::logActionEntry&content)
:TQCheckListItem(parent,content._name,TQCheckListItem::CheckBox),m_Content(content)
{
- setTristate(FALSE);
+ setTristate(false);
setText(1,m_Content._actionDesc);
if (content._name.isEmpty()) {
setText(0,"...");