summaryrefslogtreecommitdiffstats
path: root/umbrello
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:31:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:31:25 +0900
commit13093726579680e75f444dc8b0711af5b02a2f07 (patch)
tree986ea1883fe829ad30b8bf4710a08cccf1dc14fb /umbrello
parent30ea27ebf399fff691cefe16c9e16a1809f0fffe (diff)
downloadtdesdk-13093726579680e75f444dc8b0711af5b02a2f07.tar.gz
tdesdk-13093726579680e75f444dc8b0711af5b02a2f07.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'umbrello')
-rw-r--r--umbrello/umbrello/umllistview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/umbrello/umbrello/umllistview.cpp b/umbrello/umbrello/umllistview.cpp
index cf38403c..0a7b1183 100644
--- a/umbrello/umbrello/umllistview.cpp
+++ b/umbrello/umbrello/umllistview.cpp
@@ -144,7 +144,7 @@ UMLListView::~UMLListView() {}
bool UMLListView::eventFilter(TQObject *o, TQEvent *e) {
if (e->type() != TQEvent::MouseButtonPress || !o->isA("TQHeader"))
return TQListView::eventFilter(o, e);
- TQMouseEvent *me = TQT_TQMOUSEEVENT(e);
+ TQMouseEvent *me = static_cast<TQMouseEvent*>(e);
if (me->button() == TQt::RightButton) {
if (m_pMenu) {
m_pMenu->hide();