From b572252dd243a3fba47a0681fc03ece0e2259caa Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Thu, 24 Nov 2005 09:48:37 +0000 Subject: [PATCH] changed invocation of applyfilter --- src/meshlab/mainwindow.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/meshlab/mainwindow.cpp b/src/meshlab/mainwindow.cpp index 973a00111..5683c5eee 100644 --- a/src/meshlab/mainwindow.cpp +++ b/src/meshlab/mainwindow.cpp @@ -24,6 +24,9 @@ History $Log$ +Revision 1.25 2005/11/24 09:48:37 cignoni +changed invocation of applyfilter + Revision 1.24 2005/11/24 01:38:36 cignoni Added new plugins intefaces, tested with shownormal render mode @@ -419,8 +422,9 @@ void MainWindow::applyFilter() { QAction *action = qobject_cast(sender()); MeshFilterInterface *iFilter = qobject_cast(action->parent()); - - iFilter->applyFilter(action->text(),*(GLA()->mm ), this); + + //iFilter->applyFilter(action->text(),*(GLA()->mm ),this); + iFilter->applyFilter(action->text(),*(GLA()->mm ), GLA()); GLA()->log.Log(0,"Applied filter %s",action->text().toLocal8Bit().constData());// .data()); }