Fixed some more compiler warnings

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@192 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-01-31 19:43:27 +00:00
parent 51546ca2d8
commit 2291fe4405
16 changed files with 3467 additions and 4134 deletions
+5 -6
View File
@@ -14,19 +14,18 @@
// ----------------------------------------------------------------------------- : Reader
Reader::Reader(const InputStreamP& input, const String& filename)
: input(input), filename(filename), line_number(0)
, indent(0), expected_indent(0), just_opened(false)
, stream(*input)
: indent(0), expected_indent(0), just_opened(false)
, filename(filename), line_number(0)
, input(input), stream(*input)
{
moveNext();
handleAppVersion();
}
Reader::Reader(const String& filename)
: input(packages.openFileFromPackage(filename))
: indent(0), expected_indent(0), just_opened(false)
, filename(filename), line_number(0)
, indent(0), expected_indent(0), just_opened(false)
, stream(*input)
, input(packages.openFileFromPackage(filename)), stream(*input)
{
moveNext();
handleAppVersion();