summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg
authortille <tille>2002-05-12 12:49:58 (UTC)
committer tille <tille>2002-05-12 12:49:58 (UTC)
commit98229e01acc37562671b546a8aa955415a0f5843 (patch) (unidiff)
tree5e08cfe4b8526591d636c8e7ada5374ecc29a828 /noncore/unsupported/oipkg
parentc1cc5edca5d6d71350f841892fb7828f7be9ed9f (diff)
downloadopie-98229e01acc37562671b546a8aa955415a0f5843.zip
opie-98229e01acc37562671b546a8aa955415a0f5843.tar.gz
opie-98229e01acc37562671b546a8aa955415a0f5843.tar.bz2
fixed install/remove segfault
Diffstat (limited to 'noncore/unsupported/oipkg') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/mainwindow.cpp19
-rw-r--r--noncore/unsupported/oipkg/mainwindow.h1
-rw-r--r--noncore/unsupported/oipkg/pmipkg.cpp20
-rw-r--r--noncore/unsupported/oipkg/pmipkg.h2
4 files changed, 16 insertions, 26 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.cpp b/noncore/unsupported/oipkg/mainwindow.cpp
index a23c900..1c56aae 100644
--- a/noncore/unsupported/oipkg/mainwindow.cpp
+++ b/noncore/unsupported/oipkg/mainwindow.cpp
@@ -258,6 +258,7 @@ void MainWindow::runIpkg()
258 ipkg->loadList( &packageListDocLnk ); 258 ipkg->loadList( &packageListDocLnk );
259 ipkg->loadList( &packageListServers ); 259 ipkg->loadList( &packageListServers );
260 ipkg->commit(); 260 ipkg->commit();
261 ipkg->clearLists();
261 // ##### If we looked in the list of files, we could send out accurate 262 // ##### If we looked in the list of files, we could send out accurate
262 // ##### messages. But we don't bother yet, and just do an "all". 263 // ##### messages. But we don't bother yet, and just do an "all".
263 QCopEnvelope e("QPE/System", "linkChanged(QString)"); 264 QCopEnvelope e("QPE/System", "linkChanged(QString)");
@@ -420,29 +421,15 @@ void MainWindow::rotateUpdateIcon()
420 421
421void MainWindow::setDocument(const QString &fileName) 422void MainWindow::setDocument(const QString &fileName)
422{ 423{
423 installFile(fileName);
424 // ##### If we looked in the list of files, we could send out accurate
425 // ##### messages. But we don't bother yet, and just do an "all".
426 QCopEnvelope e("QPE/System", "linkChanged(QString)");
427 QString lf = QString::null;
428 e << lf;
429 // displayList();
430 exit;
431}
432
433void MainWindow::installFile(const QString &fileName)
434{
435 pvDebug(3, "MainWindow::installFile "+fileName);
436 if ( !QFile::exists( fileName ) ) return; 424 if ( !QFile::exists( fileName ) ) return;
437 ipkg->installFile( fileName ); 425 ipkg->installFile( fileName );
438 // ##### If we looked in the list of files, we could send out accurate
439 // ##### messages. But we don't bother yet, and just do an "all".
440 QCopEnvelope e("QPE/System", "linkChanged(QString)"); 426 QCopEnvelope e("QPE/System", "linkChanged(QString)");
441 QString lf = QString::null; 427 QString lf = QString::null;
442 e << lf; 428 e << lf;
443 displayList(); 429 exit;
444} 430}
445 431
432
446void MainWindow::makeChannel() 433void MainWindow::makeChannel()
447 { 434 {
448 channel = new QCopChannel( "QPE/Application/oipkg", this ); 435 channel = new QCopChannel( "QPE/Application/oipkg", this );
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h
index 7c93dad..ce3e761 100644
--- a/noncore/unsupported/oipkg/mainwindow.h
+++ b/noncore/unsupported/oipkg/mainwindow.h
@@ -64,7 +64,6 @@ private:
64 void makeMenu(); 64 void makeMenu();
65 void setSections(); 65 void setSections();
66 void setSubSections(); 66 void setSubSections();
67 void installFile(const QString &);
68 bool updateIcon; 67 bool updateIcon;
69 68
70 PmIpkg* ipkg; 69 PmIpkg* ipkg;
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp
index 0401a5b..30777c2 100644
--- a/noncore/unsupported/oipkg/pmipkg.cpp
+++ b/noncore/unsupported/oipkg/pmipkg.cpp
@@ -241,6 +241,7 @@ void PmIpkg::commit()
241 runwindow->show(); 241 runwindow->show();
242 } 242 }
243 installDialog->close(); 243 installDialog->close();
244 delete installDialog;
244 out(tr("\nAll done.")); 245 out(tr("\nAll done."));
245} 246}
246 247
@@ -268,11 +269,11 @@ void PmIpkg::remove()
268 runwindow->progress->setProgress( 1 ); 269 runwindow->progress->setProgress( 1 );
269 linkOpp = removeLink; 270 linkOpp = removeLink;
270 to_remove.at(i)->processed(); 271 to_remove.at(i)->processed();
271 pvDebug(4,"link "+QString::number(i)); 272 pvDebug(3,"link "+QString::number(i));
272 if ( to_remove.at(i)->link() ) 273 if ( to_remove.at(i)->link() )
273 processFileList( fileList, to_remove.at(i)->dest() ); 274 processFileList( fileList, to_remove.at(i)->dest() );
274 pvDebug(4,"take "+QString::number(i)); 275 //pvDebug(3,"take "+QString::number(i)+" of "+QString::number(to_remove.count()));
275 to_remove.take( i ); 276 //if ( to_remove.at(i) ) to_remove.take( i );
276 277
277 out("\n"); 278 out("\n");
278 }else{ 279 }else{
@@ -303,7 +304,7 @@ void PmIpkg::install()
303 linkOpp = createLink; 304 linkOpp = createLink;
304 if ( to_install.at(i)->link() ) 305 if ( to_install.at(i)->link() )
305 makeLinks( to_install.at(i) ); 306 makeLinks( to_install.at(i) );
306 to_install.take( i ); 307 // to_install.take( i );
307 out("\n"); 308 out("\n");
308 }else{ 309 }else{
309 out(tr("Error while installing")+to_install.at(i)->name()+"\n"); 310 out(tr("Error while installing")+to_install.at(i)->name()+"\n");
@@ -360,11 +361,6 @@ void PmIpkg::show()
360 runwindow->show(); 361 runwindow->show();
361 } 362 }
362 runwindow->outPut->setText(""); 363 runwindow->outPut->setText("");
363 //showButtons(b);
364 //if ( !b )
365 // runwindow->progress->hide();
366// else
367 // runwindow->progress->show();
368} 364}
369 365
370void PmIpkg::installFile(const QString &fileName, const QString &dest) 366void PmIpkg::installFile(const QString &fileName, const QString &dest)
@@ -393,3 +389,9 @@ void PmIpkg::removeFile(const QString &fileName, const QString &dest)
393 delete p; 389 delete p;
394} 390}
395 391
392
393void PmIpkg::clearLists()
394{
395 to_remove.clear();
396 to_install.clear();
397}
diff --git a/noncore/unsupported/oipkg/pmipkg.h b/noncore/unsupported/oipkg/pmipkg.h
index c543304..d53a74d 100644
--- a/noncore/unsupported/oipkg/pmipkg.h
+++ b/noncore/unsupported/oipkg/pmipkg.h
@@ -28,6 +28,8 @@ public:
28 void commit(); 28 void commit();
29 void update(); 29 void update();
30 void show(); 30 void show();
31 /** No descriptions */
32 void clearLists();
31 33
32public slots: 34public slots:
33 void doIt(); 35 void doIt();