summaryrefslogtreecommitdiffstats
path: root/kghostview/viewcontrol.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 16:34:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 18:26:20 +0900
commit0599e57edd9b4998aa99b0a14f4d83c2b9390b29 (patch)
tree0f9cf5d922e8c354348e50872fe00aa6ee9136cf /kghostview/viewcontrol.cpp
parent063aaff4032126e6e0685865142dea3102a6eff7 (diff)
downloadtdegraphics-0599e57edd9b4998aa99b0a14f4d83c2b9390b29.tar.gz
tdegraphics-0599e57edd9b4998aa99b0a14f4d83c2b9390b29.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c7c1795c817c1f7b89046c6d9f24379143f0bf6b)
Diffstat (limited to 'kghostview/viewcontrol.cpp')
-rw-r--r--kghostview/viewcontrol.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kghostview/viewcontrol.cpp b/kghostview/viewcontrol.cpp
index 7073fa69..2fe37797 100644
--- a/kghostview/viewcontrol.cpp
+++ b/kghostview/viewcontrol.cpp
@@ -50,7 +50,7 @@ ViewControl::ViewControl( TQWidget *parent, const char *name )
grid->setColStretch(1,10);
- magComboBox = new TQComboBox( FALSE, vcGroupBox );
+ magComboBox = new TQComboBox( false, vcGroupBox );
magComboBox->setFixedHeight( magComboBox->sizeHint().height() );
@@ -62,7 +62,7 @@ ViewControl::ViewControl( TQWidget *parent, const char *name )
- mediaComboBox = new TQComboBox( FALSE, vcGroupBox );
+ mediaComboBox = new TQComboBox( false, vcGroupBox );
mediaComboBox->setFixedHeight( magComboBox->sizeHint().height() );
connect ( mediaComboBox, TQ_SIGNAL (activated (int)),
@@ -70,7 +70,7 @@ ViewControl::ViewControl( TQWidget *parent, const char *name )
grid->addWidget( mediaComboBox, 1, 1 );
- orientComboBox = new TQComboBox( FALSE, vcGroupBox );
+ orientComboBox = new TQComboBox( false, vcGroupBox );
orientComboBox->insertItem(i18n("Portrait"));
orientComboBox->insertItem(i18n("Landscape"));
orientComboBox->insertItem(i18n("Seascape"));