~ubuntu-branches/ubuntu/lucid/mythtv/lucid

« back to all changes in this revision

Viewing changes to libs/libmythtv/channelscan/scanmonitor.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2009-09-08 23:08:37 UTC
  • mfrom: (1.1.32 upstream)
  • Revision ID: james.westby@ubuntu.com-20090908230837-zrm2j6wutp76hwso
Tags: 0.22.0~trunk21742-0ubuntu1
* New upstream checkout (21742)
  - Fixes FTBFS on PPC. See changeset 21571 for more details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
}
57
57
 
58
58
void post_event(QObject *dest, ScannerEvent::TYPE type, int val,
59
 
                ScanProgressPopup *spp)
 
59
                Configurable *spp)
60
60
{
61
61
    ScannerEvent *e = new ScannerEvent(type);
62
62
    e->intValue(val);
63
 
    e->ScanProgressPopupValue(spp);
 
63
    e->ConfigurableValue(spp);
64
64
    QApplication::postEvent(dest, e);
65
65
}
66
66