From 9cf0b03fdb835ef29f470765d74043d4d9dd604b Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 11 Apr 2012 09:33:17 +0000 Subject: [PATCH] pp --- CMakeLists.txt | 2 +- Fltk/onelabWindow.cpp | 2 +- Geo/GFaceCompound.h | 20 ++++++++++---------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ff57b145fa..de5f29e34a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1164,7 +1164,7 @@ if(MAKEINFO) ARGS ${TEX_DIR}/gmsh.texi WORKING_DIRECTORY ${TEX_DIR}) add_custom_target(txt DEPENDS ${TEX_DIR}/gmsh.txt) add_custom_command(OUTPUT ${TEX_DIR}/gmsh.html DEPENDS ${TEX_SRC} - COMMAND ${MAKEINFO} --html --no-split + COMMAND ${MAKEINFO} --html --css-ref=http://geuz.org/geuz.css --no-split ARGS ${TEX_DIR}/gmsh.texi WORKING_DIRECTORY ${TEX_DIR}) add_custom_target(html DEPENDS ${TEX_DIR}/gmsh.html) install(FILES ${TEX_DIR}/gmsh.html DESTINATION ${GMSH_DOC} OPTIONAL) diff --git a/Fltk/onelabWindow.cpp b/Fltk/onelabWindow.cpp index 945c7d178f..5ba8703367 100644 --- a/Fltk/onelabWindow.cpp +++ b/Fltk/onelabWindow.cpp @@ -1091,7 +1091,7 @@ void onelabWindow::rebuildTree() { FL_NORMAL_SIZE -= _deltaFontSize; - _itemWidth = (int)(0.5 * _tree->w()); + _itemWidth = (int)(0.45 * _tree->w()); std::vector<std::string> closed; for (Fl_Tree_Item *n = _tree->first(); n; n = n->next()) diff --git a/Geo/GFaceCompound.h b/Geo/GFaceCompound.h index fc853688d2..dad482fd9c 100644 --- a/Geo/GFaceCompound.h +++ b/Geo/GFaceCompound.h @@ -199,20 +199,20 @@ class GFaceCompound : public GFace { CONVEX_CIRCLE=4,CONVEX_PLANE=5, HARMONIC_SQUARE=6, CONFORMAL_FE=7} typeOfCompound; typedef enum {HARMONIC=0,CONFORMAL=1, RBF=2, CONVEX=3} typeOfMapping; typedef enum {UNITCIRCLE, MEANPLANE, SQUARE, ALREADYFIXED,SPECTRAL, FE} typeOfIsomorphism; - GFaceCompound(GModel *m, int tag, std::list<GFace*> &compound, - std::list<GEdge*> &U0, typeOfMapping typ = HARMONIC, - int allowPartition=1, - linearSystem<double>* lsys =0) + GFaceCompound(GModel *m, int tag, std::list<GFace*> &compound, + std::list<GEdge*> &U0, typeOfMapping typ = HARMONIC, + int allowPartition=1, + linearSystem<double>* lsys =0) : GFace(m, tag) { Msg::Error("Gmsh has to be compiled with solver support to use GFaceCompounds"); } - GFaceCompound(GModel *m, int tag, std::list<GFace*> &compound, - std::list<GEdge*> &U0, std::list<GEdge*> &V0, - std::list<GEdge*> &U1, std::list<GEdge*> &V1, - typeOfCompound typ = HARMONIC_CIRCLE, - int allowPartition=1, - linearSystem<double>* lsys =0) + GFaceCompound(GModel *m, int tag, std::list<GFace*> &compound, + std::list<GEdge*> &U0, std::list<GEdge*> &V0, + std::list<GEdge*> &U1, std::list<GEdge*> &V1, + typeOfCompound typ = HARMONIC_CIRCLE, + int allowPartition=1, + linearSystem<double>* lsys =0) : GFace(m, tag) { Msg::Error("Gmsh has to be compiled with solver support to use GFaceCompounds"); -- GitLab