[SCM] Kaboom - Debian KDE 3->4 migration tool branch, master, updated. fd5e298efdeeae1e80af271326cd0c17a98feb4f

Sune Vuorela pusling-guest at alioth.debian.org
Wed Feb 18 21:14:34 UTC 2009


The following commit has been merged in the master branch:
commit 842b944234f57eca8c612d24267c9778216d66b0
Author: Sune Vuorela <sune at vuorela.dk>
Date:   Wed Feb 18 22:11:26 2009 +0100

    no need to run migration tool if neither kde nor kde4 dir exsist

diff --git a/main.cpp b/main.cpp
index 62eb3f2..c3f444d 100644
--- a/main.cpp
+++ b/main.cpp
@@ -24,6 +24,11 @@ int main(int argc, char* argv[])
   {
     return 0;
   }
+  if(!QFile::exists(QDir::homePath()+KDEDIR) && !QFile::exists(QDir::homePath()+KDE4DIR))
+  {
+      QFile(QDir::homePath()+"/.local/kdebian3to4").open(QIODevice::WriteOnly);
+      return 0;
+  }
   MigrationTool main;
   main.show();
   int exitvalue = app.exec();

-- 
Kaboom - Debian KDE 3->4 migration tool



More information about the pkg-kde-commits mailing list