]> git.mxchange.org Git - flightgear.git/commitdiff
Rephrased some comments to avoid /* in a comment warnings.
authorcurt <curt>
Tue, 4 Feb 2003 22:28:48 +0000 (22:28 +0000)
committercurt <curt>
Tue, 4 Feb 2003 22:28:48 +0000 (22:28 +0000)
src/GUI/new_gui.hxx

index 6d3c553690d3ed810718e29978ecc7c9f51230f0..637f2c592687cecb968125f94a2e52ff464f8ab0 100644 (file)
@@ -32,7 +32,7 @@ class FGBinding;
  * This subsystem manages the graphical user interface for FlightGear.
  * It creates a menubar from the XML configuration file in
  * $FG_ROOT/gui/menubar.xml, then stores the configuration properties
- * for XML-configured dialog boxes in $FG_ROOT/gui/dialogs/*.  It
+ * for XML-configured dialog boxes found in $FG_ROOT/gui/dialogs/.  It
  * can show or hide the menubar, and can display any dialog by name.
  */
 class NewGUI : public FGSubsystem
@@ -84,9 +84,10 @@ public:
      * Display a dialog box.
      *
      * At initialization time, the subsystem reads all of the XML
-     * configuration files from $FG_ROOT/gui/dialogs/*.  The
-     * configuration for each dialog specifies a name, and this method
-     * invokes the dialog with the name specified (if it exists).
+     * configuration files from the directory $FG_ROOT/gui/dialogs/.
+     * The configuration for each dialog specifies a name, and this
+     * method invokes the dialog with the name specified (if it
+     * exists).
      *
      * @param name The name of the dialog box.
      * @return true if the dialog exists, false otherwise.