diff --git a/src/meshlabplugins/meshcolorize/equalizerDialog.h b/src/meshlabplugins/meshcolorize/equalizerDialog.h index e4c0edab5..25c9797f9 100644 --- a/src/meshlabplugins/meshcolorize/equalizerDialog.h +++ b/src/meshlabplugins/meshcolorize/equalizerDialog.h @@ -23,6 +23,9 @@ /**************************************************************************** History $Log$ +Revision 1.3 2006/06/08 08:54:43 zifnab1974 +Do not use classname in class definition + Revision 1.2 2006/01/30 17:19:22 vannini Added manual values to control min and max Q (mapping curvature to color) @@ -76,8 +79,8 @@ private: public: EqualizerDialog(QWidget *parent = 0); ~EqualizerDialog(); - void EqualizerDialog::setValues(const EqualizerSettings& es); - EqualizerSettings EqualizerDialog::getValues(); + void setValues(const EqualizerSettings& es); + EqualizerSettings getValues(); }; diff --git a/src/meshlabplugins/meshrender/meshrender.h b/src/meshlabplugins/meshrender/meshrender.h index 376e7fde1..289919b48 100644 --- a/src/meshlabplugins/meshrender/meshrender.h +++ b/src/meshlabplugins/meshrender/meshrender.h @@ -23,6 +23,9 @@ /**************************************************************************** History $Log$ +Revision 1.19 2006/06/08 08:54:43 zifnab1974 +Do not use classname in class definition + Revision 1.18 2006/05/25 04:57:45 cignoni Major 0.7 release. A lot of things changed. Colorize interface gone away, Editing and selection start to work. Optional data really working. Clustering decimation totally rewrote. History start to work. Filters organized in classes. @@ -122,11 +125,11 @@ public: sDialog = 0; } - QList MeshShaderRenderPlugin::actions () const { + QList actions () const { return actionList; } - void MeshShaderRenderPlugin::initActionList(); + void initActionList(); virtual const PluginInfo &Info(); virtual bool isSupported() {return supported;} diff --git a/src/meshlabplugins/meshrender/shaderDialog.h b/src/meshlabplugins/meshrender/shaderDialog.h index 668138435..f937002ba 100644 --- a/src/meshlabplugins/meshrender/shaderDialog.h +++ b/src/meshlabplugins/meshrender/shaderDialog.h @@ -12,6 +12,7 @@ #include #include #include +#include #include #include "shaderStructs.h"