~ubuntu-branches/ubuntu/vivid/kvpnc/vivid-proposed

« back to all changes in this revision

Viewing changes to src/toolinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-04-23 09:18:50 UTC
  • mfrom: (1.1.10 upstream) (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090423091850-hweeg0jo64t0jx52
Tags: 0.9.1-1
* New upstream release (KDE4 is here)
* Add Build-Depends cmake and pkg-kde-tools
* Remove obsolete debian/patches
* Refresh debian/patches:
  - 10_su-to-root_usage.diff
  - 13_add_kuser_issuperuser.diff
* Cleanup debian/rules - simple under KDE4
* Update debian/watch for KDE4 version
* Update debian/copyright - use versionned licenses
* Update Section field - move to utils
* Remove obsolete dependencies: kdebase-bin, gksu, sux and modutils
* Update debian/kvpnc.{manpages,1}

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef __ToolInfo_H__
22
22
#define __ToolInfo_H__
23
23
 
24
 
#include <qstring.h>
25
 
#include <qprocess.h>
26
 
#include <qobject.h>
27
 
#include <qstringlist.h>
 
24
#include <QtCore/QString>
 
25
#include <Qt3Support/Q3Process>
 
26
#include <QtCore/QObject>
 
27
#include <QtCore/QStringList>
28
28
 
29
29
class ToolInfo : public QObject
30
30
{
39
39
        ToolInfo(const QString &Name);
40
40
 
41
41
private:
42
 
        QProcess *CollectToolInfoProcess;
43
 
        QProcess *CollectOpenvpnCapabilitiesProcess;
 
42
        Q3Process *CollectToolInfoProcess;
 
43
        Q3Process *CollectOpenvpnCapabilitiesProcess;
44
44
        QStringList SearchPathList;
45
45
        bool collectRunning;
46
46
        bool collectOpenvpnCapabilitiesRunning;