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

« back to all changes in this revision

Viewing changes to libs/libmythui/mythdialogbox.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:
567
567
                    | QDir::Writable | QDir::Executable);
568
568
    m_nameFilter << "*";
569
569
 
570
 
    m_previewTimer = new QTimer();
 
570
    m_previewTimer = new QTimer(this);
571
571
    m_previewTimer->setSingleShot(true);
572
572
    connect(m_previewTimer, SIGNAL(timeout()), SLOT(LoadPreview()));
573
573
}
574
574
 
575
575
MythUIFileBrowser::~MythUIFileBrowser()
576
576
{
577
 
    if (m_previewTimer)
578
 
        delete m_previewTimer;
579
577
}
580
578
 
581
579
bool MythUIFileBrowser::Create()