summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.cpp8
-rw-r--r--noncore/settings/aqpkg/package.cpp17
-rw-r--r--noncore/settings/aqpkg/package.h3
-rw-r--r--noncore/settings/aqpkg/server.cpp12
4 files changed, 31 insertions, 9 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp
index 3aee7bd..d84fb4b 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.cpp
+++ b/noncore/settings/aqpkg/networkpkgmgr.cpp
@@ -486,7 +486,13 @@ InstallData NetworkPackageManager :: dealWithItem( QCheckListItem *item )
486 item.option = "D"; 486 item.option = "D";
487 item.packageName = name; 487 item.packageName = p->getInstalledPackageName();
488 if ( p->getInstalledTo() ) 488 if ( p->getInstalledTo() )
489 {
489 item.destination = p->getInstalledTo(); 490 item.destination = p->getInstalledTo();
491 cout << "dest - " << p->getInstalledTo()->getDestinationName() << endl;
492 cout << "dest - " << p->getInstalledTo()->getDestinationPath() << endl;
493 }
490 else 494 else
495 {
491 item.destination = p->getLocalPackage()->getInstalledTo(); 496 item.destination = p->getLocalPackage()->getInstalledTo();
497 }
492 498
diff --git a/noncore/settings/aqpkg/package.cpp b/noncore/settings/aqpkg/package.cpp
index 48b6934..fd75450 100644
--- a/noncore/settings/aqpkg/package.cpp
+++ b/noncore/settings/aqpkg/package.cpp
@@ -25,4 +25,6 @@ Package::Package( QString &name )
25 installed = false; 25 installed = false;
26 packageStoredLocally = false; 26 packageStoredLocally = false;
27 installedToRoot = false; 27 installedToRoot = false;
28 installed = false;
29 installedTo = 0;
28} 30}
@@ -33,2 +35,7 @@ Package::Package( char *name )
33 localPackage = 0; 35 localPackage = 0;
36 installed = false;
37 packageStoredLocally = false;
38 installedToRoot = false;
39 installed = false;
40 installedTo = 0;
34} 41}
@@ -105,2 +112,10 @@ QString Package :: getInstalledVersion()
105 112
113QString Package :: getInstalledPackageName()
114{
115 if ( localPackage )
116 return localPackage->getPackageName();
117 else
118 return getPackageName();
119}
120
106bool Package :: isInstalled() 121bool Package :: isInstalled()
diff --git a/noncore/settings/aqpkg/package.h b/noncore/settings/aqpkg/package.h
index 8ba5a6a..2f2a165 100644
--- a/noncore/settings/aqpkg/package.h
+++ b/noncore/settings/aqpkg/package.h
@@ -57,2 +57,3 @@ public:
57 QString getInstalledVersion(); 57 QString getInstalledVersion();
58 QString getInstalledPackageName();
58 Destination *getInstalledTo() { return installedTo; } 59 Destination *getInstalledTo() { return installedTo; }
@@ -70,3 +71,3 @@ private:
70 QString filename; 71 QString filename;
71 bool packageStoredLocally; 72 bool packageStoredLocally;
72 bool installedToRoot; 73 bool installedToRoot;
diff --git a/noncore/settings/aqpkg/server.cpp b/noncore/settings/aqpkg/server.cpp
index 7d103a2..8bca892 100644
--- a/noncore/settings/aqpkg/server.cpp
+++ b/noncore/settings/aqpkg/server.cpp
@@ -108,5 +108,5 @@ void Server :: readLocalIpks( Server *local )
108 { 108 {
109 // OK, we have a local IPK file, I think the standard naming conventions 109 // OK, we have a local IPK file, I think the standard naming conventions
110 // for these are packagename_version_arm.ipk 110 // for these are packagename_version_arm.ipk
111 QString file = (*it)->file(); 111 QString file = (*it)->file();
112 112
@@ -115,5 +115,5 @@ void Server :: readLocalIpks( Server *local )
115 packageList.push_back( Package( packageName ) ); 115 packageList.push_back( Package( packageName ) );
116 packageList.back().setVersion( ver ); 116 packageList.back().setVersion( ver );
117 packageList.back().setFilename( file ); 117 packageList.back().setFilename( file );
118 packageList.back().setPackageStoredLocally( true ); 118 packageList.back().setPackageStoredLocally( true );
119 119