diff options
author | Michele Calgaro <[email protected]> | 2023-11-07 19:27:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-07 19:27:43 +0900 |
commit | 818c8f1cd1fd849f857201eb8911434c514d6c3e (patch) | |
tree | 7d3b76bd03fb2bfd3dd8a11713dc28e7a88c069c /kommander/editor/mainwindow.cpp | |
parent | a6f77b2087cbf3c4047f46b684c7ae33b7757ec1 (diff) | |
download | tdewebdev-818c8f1cd1fd849f857201eb8911434c514d6c3e.tar.gz tdewebdev-818c8f1cd1fd849f857201eb8911434c514d6c3e.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kommander/editor/mainwindow.cpp')
-rw-r--r-- | kommander/editor/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kommander/editor/mainwindow.cpp b/kommander/editor/mainwindow.cpp index 4fbc4ff5..c584e3f9 100644 --- a/kommander/editor/mainwindow.cpp +++ b/kommander/editor/mainwindow.cpp @@ -561,7 +561,7 @@ bool MainWindow::eventFilter(TQObject *o, TQEvent *e) } break; case TQEvent::MouseButtonPress: - if (((TQMouseEvent*)e)->button() == Qt::MidButton && dynamic_cast<KommanderWidget *>(o)) + if (((TQMouseEvent*)e)->button() == TQt::MidButton && dynamic_cast<KommanderWidget *>(o)) { AssocTextEditor *editor = new AssocTextEditor((TQWidget*)o, formWindow(), propertyEditor, m_partManager, this, "AssocTextEditor", false); //deletes itself! |