summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/package.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/package.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/package.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/package.cpp b/noncore/unsupported/oipkg/package.cpp
index e317308..1705f78 100644
--- a/noncore/unsupported/oipkg/package.cpp
+++ b/noncore/unsupported/oipkg/package.cpp
@@ -17,7 +17,7 @@ Package::Package()
17 _shortDesc = ""; 17 _shortDesc = "";
18 _desc = ""; 18 _desc = "";
19 _name = ""; 19 _name = "";
20 _toProcess = true; 20 _toProcess = false;
21 _status = ""; 21 _status = "";
22} 22}
23 23
@@ -253,3 +253,11 @@ QString Package::details()
253 return description; 253 return description;
254} 254}
255 255
256/** No descriptions */
257void Package::processed()
258{
259 _toProcess = false;
260 //hack, but we're mot writing status anyway...
261 if ( installed() ) _status = "install";
262 else _status = "installed";
263}