From 66ebe6e6909cc4f18aa5d393c737d8bed2364097 Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 19 Jul 2001 02:33:18 +0000 Subject: [PATCH] - changed return type of both readProperties functions to void - changed return type of both writeProperties functions to void --- simgear/misc/props.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/simgear/misc/props.hxx b/simgear/misc/props.hxx index 5a1a32b0..71b707df 100644 --- a/simgear/misc/props.hxx +++ b/simgear/misc/props.hxx @@ -1067,26 +1067,26 @@ private: /** * Read properties from an XML input stream. */ -bool readProperties (istream &input, SGPropertyNode * start_node, +void readProperties (istream &input, SGPropertyNode * start_node, const string &base = ""); /** * Read properties from an XML file. */ -bool readProperties (const string &file, SGPropertyNode * start_node); +void readProperties (const string &file, SGPropertyNode * start_node); /** * Write properties to an XML output stream. */ -bool writeProperties (ostream &output, const SGPropertyNode * start_node); +void writeProperties (ostream &output, const SGPropertyNode * start_node); /** * Write properties to an XML file. */ -bool writeProperties (const string &file, const SGPropertyNode * start_node); +void writeProperties (const string &file, const SGPropertyNode * start_node); /** -- 2.39.5