From 2ed5646c2dbbbb291304552645d8699b883f947b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Wed, 9 Nov 2011 09:26:38 +0000 Subject: [PATCH] Changed plugin name git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@12837 383ad7c9-94d9-4d36-a494-682f7c89f535 --- DecimaterPlugin.cc | 4 ++-- DecimaterPlugin.hh | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/DecimaterPlugin.cc b/DecimaterPlugin.cc index 0f7e9fa..dda4141 100644 --- a/DecimaterPlugin.cc +++ b/DecimaterPlugin.cc @@ -77,7 +77,7 @@ void DecimaterPlugin::initializePlugin() { connect(tool_, SIGNAL(showing()), this, SLOT(slotUpdateNumTriangles())); toolIcon_ = new QIcon(OpenFlipper::Options::iconDirStr()+OpenFlipper::Options::dirSeparator()+"decimater.png"); - emit addToolbox(QString("Decimater Flipper"), tool_, toolIcon_); + emit addToolbox(QString("Decimater"), tool_, toolIcon_); } @@ -347,7 +347,7 @@ void DecimaterPlugin::slot_decimate() { pObject->mesh()->update_normals(); pObject->update(); - emit createBackup(o_it->id(), "Decimation Flipper"); + emit createBackup(o_it->id(), "Decimation"); emit updatedObject(o_it->id(), UPDATE_TOPOLOGY); } diff --git a/DecimaterPlugin.hh b/DecimaterPlugin.hh index ceb2c03..8d65bc7 100644 --- a/DecimaterPlugin.hh +++ b/DecimaterPlugin.hh @@ -66,8 +66,6 @@ //== CLASS DEFINITION ========================================================= -/** Plugin port of the Decimater from Flipper - */ class DecimaterPlugin : public QObject, BaseInterface, ToolboxInterface, LoggingInterface, BackupInterface { Q_OBJECT Q_INTERFACES(BaseInterface) @@ -97,7 +95,7 @@ public: ~DecimaterPlugin() {}; QString name() { return QString("DecimaterPlugin"); }; - QString description() { return QString("A port of the Decimater plugin in Flipper"); }; + QString description() { return QString("Mesh Decimater Plugin"); }; private: -- GitLab