diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-21 04:34:38 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-21 07:03:49 -0800 |
commit | 0210c2b518d06e3a7118e3b33367658b9b4b1970 (patch) | |
tree | 3717f8af39d11e2dd1c901796a95f7884d714d3c /MobileCydia.mm | |
parent | 8ee0c0b16153336776ca26f4f00c5ce2151db2f7 (diff) |
Call through to pkgAcquireStatus::Start/Stop().
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 8241618..c29e9ff 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -1241,10 +1241,12 @@ class Status : } virtual void Start() { + pkgAcquireStatus::Start(); [delegate_ startProgress]; } virtual void Stop() { + pkgAcquireStatus::Stop(); } }; /* }}} */ |