From d9096c1e476198f8da64dcc8978cfd1eb2512af6 Mon Sep 17 00:00:00 2001
From: Mark Olesen <Mark.Olesen@Germany>
Date: Tue, 20 Jan 2009 17:14:53 +0100
Subject: [PATCH] cosmetics

---
 applications/test/dictionary/testDictRegex    | 14 ++++++------
 .../mesh/manipulation/cellSet/cellSetDict     | 22 +++++++++----------
 .../mesh/manipulation/faceSet/faceSetDict     |  4 ++--
 .../mesh/manipulation/pointSet/pointSetDict   | 14 ++++++------
 4 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/applications/test/dictionary/testDictRegex b/applications/test/dictionary/testDictRegex
index 01d4274ba8d..ee4bf298e05 100644
--- a/applications/test/dictionary/testDictRegex
+++ b/applications/test/dictionary/testDictRegex
@@ -15,21 +15,21 @@ FoamFile
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 #inputMode  merge
 
-".*"        parentValue1;
-"[n-z].*"   parentValue2;
-"f.*"       parentValue3;
+'.*'        parentValue1;
+'[n-z].*'   parentValue2;
+'f.*'       parentValue3;
 keyX        parentValue4;
 keyY        parentValue5;
 
-"(.*)Dict"
+'(.*)Dict'
 {
     foo         subdictValue0;
     bar         $f.*;         // should this really match 'foo'?
 
     // result is dependent on insert order!
-    "a.*c"      subdictValue3;
-    "ab.*"      subdictValue2;
-    "a.*"       subdictValue1;
+    'a.*c'      subdictValue3;
+    'ab.*'      subdictValue2;
+    'a.*'       subdictValue1;
     abcd        \1;
 }
 
diff --git a/applications/utilities/mesh/manipulation/cellSet/cellSetDict b/applications/utilities/mesh/manipulation/cellSet/cellSetDict
index 9589b484ebe..61f8ed4432f 100644
--- a/applications/utilities/mesh/manipulation/cellSet/cellSetDict
+++ b/applications/utilities/mesh/manipulation/cellSet/cellSetDict
@@ -82,7 +82,7 @@ topoSetSources
     // Cells in cell zone
     zoneToCell
     {
-        name ".*Zone";      // name of cellZone, wildcards allowed.
+        name '.*Zone';      // Name of cellZone, regular expressions allowed
     }
 
     // values of field within certain range
@@ -102,16 +102,16 @@ topoSetSources
     // Select based on surface
     surfaceToCell
     {
-        file                "www.avl.com-geometry.stl";
-        outsidePoints       ((-99 -99 -59));    // definition of outside
-        includeCut          false;              // cells cut by surface
-        includeInside       false;              // cells not on outside of surf
-        includeOutside      false;              // cells on outside of surf
-        nearDistance        -1;                 // cells with centre near surf
-                                                // (set to -1 if not used)
-        curvature           0.9;                // cells within nearDistance
-                                                // and near surf curvature
-                                                // (set to -100 if not used)
+        file            "www.avl.com-geometry.stl";
+        outsidePoints   ((-99 -99 -59));    // definition of outside
+        includeCut      false;              // cells cut by surface
+        includeInside   false;              // cells not on outside of surf
+        includeOutside  false;              // cells on outside of surf
+        nearDistance    -1;                 // cells with centre near surf
+                                            // (set to -1 if not used)
+        curvature       0.9;                // cells within nearDistance
+                                            // and near surf curvature
+                                            // (set to -100 if not used)
     }
 );
 
diff --git a/applications/utilities/mesh/manipulation/faceSet/faceSetDict b/applications/utilities/mesh/manipulation/faceSet/faceSetDict
index 4d5abe2a5e3..04c0ee28374 100644
--- a/applications/utilities/mesh/manipulation/faceSet/faceSetDict
+++ b/applications/utilities/mesh/manipulation/faceSet/faceSetDict
@@ -56,13 +56,13 @@ topoSetSources
     // All faces of patch
     patchToFace
     {
-        name ".*Wall";      // Name of patch, regular expressions allowed
+        name '.*Wall';      // Name of patch, regular expressions allowed
     }
 
     // All faces of faceZone
     zoneToFace
     {
-        name ".*Zone1";     // Name of faceZone, regular expressions allowed
+        name '.*Zone1';     // Name of faceZone, regular expressions allowed
     }
 
     // Faces with face centre within box
diff --git a/applications/utilities/mesh/manipulation/pointSet/pointSetDict b/applications/utilities/mesh/manipulation/pointSet/pointSetDict
index 5c19ea60fe8..b7215c64e69 100644
--- a/applications/utilities/mesh/manipulation/pointSet/pointSetDict
+++ b/applications/utilities/mesh/manipulation/pointSet/pointSetDict
@@ -60,18 +60,18 @@ topoSetSources
     // All points in pointzone
     zoneToPoint
     {
-        name ".*Zone";      // name of pointZone, wildcards allowed.
+        name '.*Zone';      // name of pointZone, regular expressions allowed
     }
 
     // Select based on surface
     surfaceToPoint
     {
-        file                "www.avl.com-geometry.stl";
-        nearDistance        0.1;    // points near to surface
-        includeInside       false;  // points on inside of surface
-                                    // (requires closed surface with consistent
-                                    //  normals)
-        includeOutside      false;  //   ,,    outside  ,,
+        file            "www.avl.com-geometry.stl";
+        nearDistance    0.1;    // points near to surface
+        includeInside   false;  // points on inside of surface
+                                // (requires closed surface with consistent
+                                //  normals)
+        includeOutside  false;  //   ,,    outside  ,,
     }
 );
 
-- 
GitLab