summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/pmipkg.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/oipkg/pmipkg.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/pmipkg.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/noncore/unsupported/oipkg/pmipkg.h b/noncore/unsupported/oipkg/pmipkg.h
index 3799969..d2490e8 100644
--- a/noncore/unsupported/oipkg/pmipkg.h
+++ b/noncore/unsupported/oipkg/pmipkg.h
@@ -6,12 +6,13 @@
#include <qlist.h>
#include <qstring.h>
#include <qwidget.h>
#include "pksettings.h"
#include "runwindow.h"
#include "packagelist.h"
+#include "installdialog.h"
#include "debug.h"
#define createLink 0
#define removeLink 1
class Package;
@@ -21,13 +22,13 @@ class PmIpkg : public QObject
public:
PmIpkg( PackageManagerSettings* , QWidget* p=0, const char * name=0, WFlags f=0 );
~PmIpkg();
int linkOpp;
void loadList( PackageList );
- void commit( PackageList );
+ void commit();
void update();
void showButtons(bool b=true);
void show( bool buttons=true );
public slots:
void doIt();
@@ -36,19 +37,17 @@ public slots:
void installFile(const QString &fileName, const QString &dest="");
void removeFile(const QString &fileName, const QString &dest="");
void createLinks( const QString &dest );
void removeLinks( const QString &dest );
private:
-// int sizecount;
PackageManagerSettings* settings;
RunWindow *runwindow;
- QDialog *installDialog;
+ InstallDialog *installDialog;
QList<Package> to_remove;
QList<Package> to_install;
-// bool runwindowopen;
QString fileNameToInstall;
QCheckBox *_force_reinstall;
QCheckBox *_force_remove;
QCheckBox *_force_depends;
void startDialog();
void makeLinks(Package*);