diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:52 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:52 +0000 |
commit | 8e06abb2587d06891a84414f09f4910429451bf8 (patch) | |
tree | ad21706900b938abce23ea8f04230e39c14e47b4 /apt-pkg/deb | |
parent | ad00ae81eb9e1f5384f8fe32879d483c72bbdace (diff) |
Class File name change to FileFd
Author: jgg
Date: 1998-07-19 04:42:10 GMT
Class File name change to FileFd
Diffstat (limited to 'apt-pkg/deb')
-rw-r--r-- | apt-pkg/deb/deblistparser.cc | 4 | ||||
-rw-r--r-- | apt-pkg/deb/deblistparser.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index f73adabc0..c2ae6de9c 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: deblistparser.cc,v 1.7 1998/07/16 06:08:42 jgg Exp $ +// $Id: deblistparser.cc,v 1.8 1998/07/19 04:42:16 jgg Exp $ /* ###################################################################### Package Cache Generator - Generator for the cache structure. @@ -21,7 +21,7 @@ // ListParser::debListParser - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -debListParser::debListParser(File &File) : Tags(File) +debListParser::debListParser(FileFd &File) : Tags(File) { } /*}}}*/ diff --git a/apt-pkg/deb/deblistparser.h b/apt-pkg/deb/deblistparser.h index 63e78a988..72e8ed073 100644 --- a/apt-pkg/deb/deblistparser.h +++ b/apt-pkg/deb/deblistparser.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: deblistparser.h,v 1.4 1998/07/12 23:58:54 jgg Exp $ +// $Id: deblistparser.h,v 1.5 1998/07/19 04:42:17 jgg Exp $ /* ###################################################################### Debian Package List Parser - This implements the abstract parser @@ -53,7 +53,7 @@ class debListParser : public pkgCacheGenerator::ListParser virtual bool Step(); - debListParser(File &File); + debListParser(FileFd &File); }; #endif |