summaryrefslogtreecommitdiffstats
path: root/src/trayicon.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 13:43:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 13:43:44 +0900
commitddecb73086f438148d61910e8fb0a8340d3cf86b (patch)
tree39d3ac86845c6921fd3b497d9a81ac656167090e /src/trayicon.cpp
parentd012930907802f42dbc4d6452220eaeb4f9c206d (diff)
downloadtork-ddecb73086f438148d61910e8fb0a8340d3cf86b.tar.gz
tork-ddecb73086f438148d61910e8fb0a8340d3cf86b.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/trayicon.cpp')
-rw-r--r--src/trayicon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trayicon.cpp b/src/trayicon.cpp
index 36a9fa7..2aa227a 100644
--- a/src/trayicon.cpp
+++ b/src/trayicon.cpp
@@ -65,7 +65,7 @@ TrayIcon::TrayIcon( tork *parent, const char *name)
drawContents ( paint );
m_parent = parent;
- setAcceptDrops( TRUE );
+ setAcceptDrops( true );
m_hover_popup = new TrayHoverPopup(m_kt_pix,this);
connect(this,TQ_SIGNAL(quitSelected()),tdeApp,TQ_SLOT(quit()));