From: Michael Andres Date: Tue, 17 Jul 2007 10:41:36 +0000 (+0000) Subject: include packages.lang in combined progress X-Git-Tag: BASE-SuSE-Linux-10_3-Branch~556 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29d39d267bda9eb058542b6557eeb29b4bff1e23;p=platform%2Fupstream%2Flibzypp.git include packages.lang in combined progress --- diff --git a/zypp/parser/susetags/RepoParser.cc b/zypp/parser/susetags/RepoParser.cc index 9cebd42..788d0b6 100644 --- a/zypp/parser/susetags/RepoParser.cc +++ b/zypp/parser/susetags/RepoParser.cc @@ -271,7 +271,8 @@ namespace zypp reader.setLocale( toParse ); reader.setPkgConsumer( bind( &Impl::consumePkgLang, this, _1 ) ); reader.setSrcPkgConsumer( bind( &Impl::consumeSrcPkgLang, this, _1 ) ); - reader.parse( inputfile ); + CombinedProgressData progress( _ticks, PathInfo(inputfile).size() ); + reader.parse( inputfile, progress ); } if ( ! _ticks.incr( PathInfo(inputfile).size() ) )