summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Andres <ma@suse.de>2014-01-24 08:10:29 +0100
committerMichael Andres <ma@suse.de>2014-01-24 08:10:29 +0100
commit967574db209bbef252cf3f347a983b737a6fec45 (patch)
tree15c8a58ca73d3e51726b2fa634aa601d017195b6
parent8119ef7479d265909e96424c96acc7707e9133b2 (diff)
downloadlibzypp-bindings-967574db209bbef252cf3f347a983b737a6fec45.tar.gz
libzypp-bindings-967574db209bbef252cf3f347a983b737a6fec45.tar.bz2
libzypp-bindings-967574db209bbef252cf3f347a983b737a6fec45.zip
Adapt to libzypp changes.
-rw-r--r--swig/RepoInfo.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/swig/RepoInfo.i b/swig/RepoInfo.i
index f86a254..4f6c06c 100644
--- a/swig/RepoInfo.i
+++ b/swig/RepoInfo.i
@@ -17,7 +17,7 @@ namespace zypp
%ignore zypp::repo::RepoInfoBase::dumpOn(std::ostream &) const;
%ignore zypp::repo::RepoInfoBase::dumpAsIniOn(std::ostream &) const;
-%ignore zypp::repo::RepoInfoBase::dumpAsXMLOn(std::ostream &) const;
+%ignore zypp::repo::RepoInfoBase::dumpAsXmlOn(std::ostream &) const;
%include <zypp/repo/RepoInfoBase.h>
// This is due to a typo in libzypp < 5.4.0
@@ -25,7 +25,7 @@ namespace zypp
%ignore zypp::RepoInfo::dumpOn(std::ostream &) const;
%ignore zypp::RepoInfo::dumpAsIniOn(std::ostream &) const;
-%ignore zypp::RepoInfo::dumpAsXMLOn(std::ostream &) const;
+%ignore zypp::RepoInfo::dumpAsXmlOn(std::ostream &) const;
%include <zypp/RepoInfo.h>
typedef std::list<zypp::RepoInfo> RepoInfoList;
@@ -50,7 +50,7 @@ typedef std::list<zypp::RepoInfo> RepoInfoList;
std::string dumpAsXML(void) const
{
std::ostringstream str;
- self->dumpAsXMLOn(str);
+ self->dumpAsXmlOn(str);
return str.str();
}
}