]> git.mxchange.org Git - simgear.git/commitdiff
Tweaks for 0.0.11 release.
authorcurt <curt>
Mon, 3 Jul 2000 17:45:30 +0000 (17:45 +0000)
committercurt <curt>
Mon, 3 Jul 2000 17:45:30 +0000 (17:45 +0000)
configure.in
simgear/Makefile.am
simgear/misc/props.cxx

index 63f95597a8eb1ed676c606385a4f2a474e67830e..60cf35573f3f6959fa71f77bffa320705310442a 100644 (file)
@@ -6,7 +6,7 @@ dnl $Id$
 AC_INIT(simgear/bucket/newbucket.cxx)
 
 dnl Initialize the automake stuff
-AM_INIT_AUTOMAKE(SimGear, 0.0.9)
+AM_INIT_AUTOMAKE(SimGear, 0.0.11)
 
 dnl Checks for programs.
 AC_PROG_MAKE_SET
@@ -257,6 +257,7 @@ AC_OUTPUT( \
        simgear/misc/Makefile \
        simgear/screen/Makefile \
        simgear/serial/Makefile \
+       simgear/sky/Makefile \
        simgear/xgl/Makefile \
        simgear/zlib/Makefile \
 )
index a3d980a467a52f0cb29f9fe0678f12273e566e18..715caafdc3a13b6aec07bb47c2ac63caff41d234 100644 (file)
@@ -33,6 +33,7 @@ SUBDIRS = \
        misc \
        screen \
        $(SERIAL_DIRS) \
+       sky \
        xgl \
        $(ZLIB_DIRS)
 
index 8248a8acc580671ba9dd1e3a9013a2bf36351ec1..cbc3306865648512c8dd1706b419232dbf9bc3ba 100644 (file)
@@ -240,9 +240,9 @@ FGValue::getBoolValue () const
     return (getRawDouble() == 0.0 ? false : true);
   case STRING:
     return (getRawString() == "false" ? false : true);
-  default:
-    return false;
   }
+
+  return false;
 }
 
 
@@ -265,9 +265,9 @@ FGValue::getIntValue () const
     return (int)(getRawDouble());
   case STRING:
     return atoi(getRawString().c_str());
-  default:
-    return 0;
   }
+
+  return 0;
 }
 
 
@@ -290,9 +290,9 @@ FGValue::getFloatValue () const
     return (float)(getRawDouble());
   case STRING:
     return (float)atof(getRawString().c_str());
-  default:
-    return 0.0;
   }
+
+  return 0.0;
 }
 
 
@@ -315,9 +315,9 @@ FGValue::getDoubleValue () const
     return getRawDouble();
   case STRING:
     return atof(getRawString().c_str());
-  default:
-    return 0.0;
   }
+
+  return 0.0;
 }
 
 
@@ -336,9 +336,9 @@ FGValue::getStringValue () const
     return empty_string;
   case STRING:
     return getRawString();
-  default:
-    return empty_string;
   }
+
+  return empty_string;
 }