diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-28 21:07:20 +0900 |
| commit | 8c5bf7fe3ada23d527631368ab77f5fa3844e359 (patch) | |
| tree | 37252fd078ecdf32e46c526a0a6fee046979a14e /arts/builder/propertypanel.cpp | |
| parent | 6ccc327f6f1f7f26a62f6c3099179d2e3aaddc7a (diff) | |
| download | tdemultimedia-8c5bf7fe.tar.gz tdemultimedia-8c5bf7fe.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit dd46b9bdeae872ed7682913c898931f1aa6d3d42)
Diffstat (limited to 'arts/builder/propertypanel.cpp')
| -rw-r--r-- | arts/builder/propertypanel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arts/builder/propertypanel.cpp b/arts/builder/propertypanel.cpp index 209fe7e4..c702d63d 100644 --- a/arts/builder/propertypanel.cpp +++ b/arts/builder/propertypanel.cpp @@ -355,12 +355,12 @@ bool PropertyPanel::eventFilter( TQObject *o, TQEvent *e ) constantValueEdit->setText( entered ); constantValueEdit->setFocus(); // kdDebug() << "keyPress used in propPanel" << endl; - return TRUE; // eat event + return true; // eat event } } // else // kdDebug() << "event type = " << e->type() << " != " << TQEvent::KeyPress << endl; - return FALSE; // PropertyPanelBase::eventFilter( o, e ); + return false; // PropertyPanelBase::eventFilter( o, e ); } bool PropertyPanel::isEnum(const std::string& type) |
