From dbec1cddf6fd37e3a6a50ad28ac93437ebeef0a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Mon, 9 Feb 2009 12:39:44 +0000 Subject: [PATCH] Fixed a warning git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@50 fdac6126-5c0c-442c-9429-916003d36597 --- Apps/Decimating/DecimaterViewerWidget.hh | 2 +- Apps/Decimating/decimaterviewer.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Apps/Decimating/DecimaterViewerWidget.hh b/Apps/Decimating/DecimaterViewerWidget.hh index f18c5a0c..864f284b 100644 --- a/Apps/Decimating/DecimaterViewerWidget.hh +++ b/Apps/Decimating/DecimaterViewerWidget.hh @@ -101,7 +101,7 @@ public: typedef std::auto_ptr< mod_nf_t > mod_nf_o; /// default constructor - DecimaterViewerWidget(QWidget* _parent=0, const char* _name=0) + DecimaterViewerWidget(QWidget* _parent=0) : MeshViewerWidget(_parent), steps_(1) { timer_ = new QTimer(this); diff --git a/Apps/Decimating/decimaterviewer.cc b/Apps/Decimating/decimaterviewer.cc index a1939f97..b1d7eb29 100644 --- a/Apps/Decimating/decimaterviewer.cc +++ b/Apps/Decimating/decimaterviewer.cc @@ -82,7 +82,7 @@ int main(int argc, char **argv) } } // create widget - DecimaterViewerWidget w(0, "Viewer"); + DecimaterViewerWidget w(0); // app.setMainWidget(&w); w.resize(400, 400);