summaryrefslogtreecommitdiffstats
path: root/examples/dragdrop/secret.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dragdrop/secret.cpp')
-rw-r--r--examples/dragdrop/secret.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dragdrop/secret.cpp b/examples/dragdrop/secret.cpp
index 5a152048e..cf1ff682d 100644
--- a/examples/dragdrop/secret.cpp
+++ b/examples/dragdrop/secret.cpp
@@ -39,9 +39,9 @@ bool SecretDrag::decode( TQDropEvent* e, TQString& str )
TQString msg;
msg.sprintf("The secret number is %d", payload[0] );
str = msg;
- return TRUE;
+ return true;
}
- return FALSE;
+ return false;
}