summaryrefslogtreecommitdiff
authorandyq <andyq>2002-10-25 09:49:57 (UTC)
committer andyq <andyq>2002-10-25 09:49:57 (UTC)
commit4a2f6dd634aa277bca3818f090d691844e219f64 (patch) (unidiff)
tree5b76af0178f93684e90f8ff2e8250f87c5eb2517
parent1d314624759bf1b18977f0569643ea11473d84cf (diff)
downloadopie-4a2f6dd634aa277bca3818f090d691844e219f64.zip
opie-4a2f6dd634aa277bca3818f090d691844e219f64.tar.gz
opie-4a2f6dd634aa277bca3818f090d691844e219f64.tar.bz2
Added a few fields for dependancy tracking
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/package.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/package.h b/noncore/settings/aqpkg/package.h
index 2f2a165..56ef874 100644
--- a/noncore/settings/aqpkg/package.h
+++ b/noncore/settings/aqpkg/package.h
@@ -45,2 +45,3 @@ public:
45 void setInstalledTo( Destination *d ) { installedTo = d; } 45 void setInstalledTo( Destination *d ) { installedTo = d; }
46 void setDependancies( QString &deps ) { dependancies = deps; }
46 47
@@ -52,2 +53,3 @@ public:
52 QString getFilename() { return filename; } 53 QString getFilename() { return filename; }
54 QString getDependancies() { return dependancies; }
53 55
@@ -75,2 +77,3 @@ private:
75 bool differentVersionAvailable; 77 bool differentVersionAvailable;
78 QString dependancies;
76 79