diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:25 +0900 |
commit | 13093726579680e75f444dc8b0711af5b02a2f07 (patch) | |
tree | 986ea1883fe829ad30b8bf4710a08cccf1dc14fb /umbrello | |
parent | 30ea27ebf399fff691cefe16c9e16a1809f0fffe (diff) | |
download | tdesdk-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.cpp | 2 |
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(); |