diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:38 +0900 |
commit | 99f7cd1932291ac8fe822b13cd1077da6433f279 (patch) | |
tree | 1e7caf4dce2a498cc5d008aa3e04fef242679fc0 /ksim/monitors/filesystem | |
parent | 8bba786d188dd896336797f05e0a452e1a01d52b (diff) | |
download | tdeutils-99f7cd1932291ac8fe822b13cd1077da6433f279.tar.gz tdeutils-99f7cd1932291ac8fe822b13cd1077da6433f279.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksim/monitors/filesystem')
-rw-r--r-- | ksim/monitors/filesystem/filesystemwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksim/monitors/filesystem/filesystemwidget.cpp b/ksim/monitors/filesystem/filesystemwidget.cpp index b60ba43..4a63e04 100644 --- a/ksim/monitors/filesystem/filesystemwidget.cpp +++ b/ksim/monitors/filesystem/filesystemwidget.cpp @@ -151,7 +151,7 @@ bool FilesystemWidget::eventFilter(TQObject *o, TQEvent *e) if (o == progressBar && e->type() == TQEvent::MouseButtonPress) { - switch(TQT_TQMOUSEEVENT(e)->button()) { + switch(static_cast<TQMouseEvent*>(e)->button()) { case TQt::RightButton: showMenu(i); break; |