summaryrefslogtreecommitdiff
path: root/python/progress.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-07-16 16:03:02 +0200
committerJulian Andres Klode <jak@debian.org>2009-07-16 16:03:02 +0200
commitef106396218522fce5856744741c7b3f87261cc2 (patch)
treebe4b380fab270e31927056f1506b4e52e105e77d /python/progress.cc
parent16995d9f7f53d93f08ae0b438c70ea9d5e4d35e1 (diff)
downloadpython-apt-ef106396218522fce5856744741c7b3f87261cc2.tar.gz
python/acquire.cc: Introduce PyAcquireWorker_Type, make PyAcquireItemDesc_Type contain a pointer.
Diffstat (limited to 'python/progress.cc')
-rw-r--r--python/progress.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/progress.cc b/python/progress.cc
index 753949af..18e038dd 100644
--- a/python/progress.cc
+++ b/python/progress.cc
@@ -156,7 +156,7 @@ void PyFetchProgress::UpdateStatus(pkgAcquire::ItemDesc &Itm, int status)
void PyFetchProgress::IMSHit(pkgAcquire::ItemDesc &Itm)
{
if (PyObject_TypeCheck(callbackInst,&PyAcquireProgress_Type))
- RunSimpleCallback("ims_hit", TUPLEIZE(PyAcquireItemDesc_FromCpp(Itm)));
+ RunSimpleCallback("ims_hit", TUPLEIZE(PyAcquireItemDesc_FromCpp(&Itm)));
else
UpdateStatus(Itm, DLHit);
}
@@ -164,7 +164,7 @@ void PyFetchProgress::IMSHit(pkgAcquire::ItemDesc &Itm)
void PyFetchProgress::Fetch(pkgAcquire::ItemDesc &Itm)
{
if (PyObject_TypeCheck(callbackInst,&PyAcquireProgress_Type))
- RunSimpleCallback("fetch", TUPLEIZE(PyAcquireItemDesc_FromCpp(Itm)));
+ RunSimpleCallback("fetch", TUPLEIZE(PyAcquireItemDesc_FromCpp(&Itm)));
else
UpdateStatus(Itm, DLQueued);
}
@@ -172,7 +172,7 @@ void PyFetchProgress::Fetch(pkgAcquire::ItemDesc &Itm)
void PyFetchProgress::Done(pkgAcquire::ItemDesc &Itm)
{
if (PyObject_TypeCheck(callbackInst,&PyAcquireProgress_Type))
- RunSimpleCallback("done", TUPLEIZE(PyAcquireItemDesc_FromCpp(Itm)));
+ RunSimpleCallback("done", TUPLEIZE(PyAcquireItemDesc_FromCpp(&Itm)));
else
UpdateStatus(Itm, DLDone);
}
@@ -190,7 +190,7 @@ void PyFetchProgress::Fail(pkgAcquire::ItemDesc &Itm)
if (PyObject_TypeCheck(callbackInst,&PyAcquireProgress_Type))
- RunSimpleCallback("fail", TUPLEIZE(PyAcquireItemDesc_FromCpp(Itm)));
+ RunSimpleCallback("fail", TUPLEIZE(PyAcquireItemDesc_FromCpp(&Itm)));
else
UpdateStatus(Itm, DLFailed);
}