~ubuntu-branches/ubuntu/saucy/mp3diags/saucy-proposed

« back to all changes in this revision

Viewing changes to src/ScanDlgImpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-07-18 15:21:31 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090718152131-bn4pl6i0hcww44ll
Tags: 0.99.04.026-0ubuntu1
* New upstream release.
* Suggest mp3diags-doc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 ***************************************************************************/
21
21
 
22
22
 
23
 
#include <QHeaderView>
24
 
 
25
 
#include "ScanDlgImpl.h"
26
 
 
27
 
#include "CommonData.h"
28
 
#include "CheckedDir.h"
 
23
#include  <QHeaderView>
 
24
 
 
25
#include  "ScanDlgImpl.h"
 
26
 
 
27
#include  "CommonData.h"
 
28
#include  "CheckedDir.h"
29
29
 
30
30
 
31
31
using namespace std;
49
49
    //m_pDirModel->setDirs(pCommonData->getIncludeDirs(), pCommonData->getExcludeDirs(), m_pDirsT);
50
50
    //m_pDirModel->expandNodes(m_pDirsT);
51
51
    QTimer::singleShot(1, this, SLOT(onShow()));
 
52
 
 
53
    { QAction* p (new QAction(this)); p->setShortcut(QKeySequence("F1")); connect(p, SIGNAL(triggered()), this, SLOT(onHelp())); addAction(p); }
52
54
}
53
55
 
54
56
 
73
75
}
74
76
 
75
77
 
 
78
void ScanDlgImpl::onHelp()
 
79
{
 
80
    // openHelp("index.html");
 
81
}
 
82