From 484a4c148da70046f124ce1bbd57c6f8d4f28c2b Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Mon, 23 Jan 2006 15:25:43 +0000 Subject: [PATCH] No significant changes --- src/meshlab/glarea.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/meshlab/glarea.cpp b/src/meshlab/glarea.cpp index c7cd98416..f097eeef8 100644 --- a/src/meshlab/glarea.cpp +++ b/src/meshlab/glarea.cpp @@ -24,6 +24,9 @@ History $Log$ +Revision 1.78 2006/01/23 15:25:43 fmazzant +No significant changes + Revision 1.77 2006/01/23 09:09:30 fmazzant commented code @@ -331,10 +334,10 @@ GLArea::GLArea(QWidget *parent) QString GLArea::GetMeshInfoString(int mask) { QString info; - if( mask & MeshModel::IOM_VERTCOLOR){info.append("VC ");} if( mask & MeshModel::IOM_VERTQUALITY){info.append("VQ ");} - if( mask & MeshModel::IOM_FACECOLOR){info.append("FC ");} + if( mask & MeshModel::IOM_VERTCOLOR){info.append("VC ");} if( mask & MeshModel::IOM_FACEQUALITY){info.append("FQ ");} + if( mask & MeshModel::IOM_FACECOLOR){info.append("FC ");} if( mask & MeshModel::IOM_WEDGTEXCOORD){info.append("WT ");} return info; }