]> git.pld-linux.org Git - packages/psi-plus.git/commitdiff
- no longer used
authorlisu <lisu@pld-linux.org>
Tue, 12 Apr 2011 19:33:50 +0000 (19:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    psi-plus-home_etc.patch -> 1.2
    psi-plus-no_online_offline_status.patch -> 1.2

psi-plus-home_etc.patch [deleted file]
psi-plus-no_online_offline_status.patch [deleted file]

diff --git a/psi-plus-home_etc.patch b/psi-plus-home_etc.patch
deleted file mode 100644 (file)
index c7d4403..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
---- psi-0.11/src/applicationinfo.cpp.orig      2007-10-14 16:00:51.000000000 +0200
-+++ psi-0.11/src/applicationinfo.cpp   2008-01-25 16:32:03.390665615 +0100
-@@ -131,7 +131,8 @@
-               return p;
- #if defined(Q_WS_X11)
--      QDir proghome(QDir::homeDirPath() + "/.psi");
-+      char *home_etc = getenv("HOME_ETC");
-+      QDir proghome((home_etc != NULL && (strncmp(home_etc, "", 1) != 0) ? QString(home_etc) : QDir::homeDirPath()) + "/.psi");
-       if(!proghome.exists()) {
-               QDir home = QDir::home();
-               home.mkdir(".psi");
-@@ -160,7 +161,8 @@
-       return proghome.path();
- #elif defined(Q_WS_MAC)
--      QDir proghome(QDir::homeDirPath() + "/.psi");
-+      char *home_etc = getenv("HOME_ETC");
-+      QDir proghome((home_etc != NULL && (strncmp(home_etc, "", 1) != 0) ? QString(home_etc) : QDir::homeDirPath()) + "/.psi");
-       if(!proghome.exists()) {
-               QDir home = QDir::home();
-               home.mkdir(".psi");
diff --git a/psi-plus-no_online_offline_status.patch b/psi-plus-no_online_offline_status.patch
deleted file mode 100644 (file)
index 1b0aac7..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---- psi-0.12/src/psiaccount.cpp.orig   2008-05-14 23:33:03.000000000 +0200
-+++ psi-0.12/src/psiaccount.cpp        2008-08-01 17:56:28.000000000 +0200
-@@ -2988,11 +2988,11 @@
- void PsiAccount::changeStatus(int x)
- {
-       if(x == STATUS_OFFLINE && !PsiOptions::instance()->getOption("options.status.ask-for-message-on-offline").toBool()) {
--              setStatus(Status(Status::Offline, "Logged out", 0));
-+              setStatus(Status("","",0,true));
-       }
-       else {
-               if(x == STATUS_ONLINE && !PsiOptions::instance()->getOption("options.status.ask-for-message-on-online").toBool()) {
--                      setStatus(Status());
-+                      setStatus(Status("","",0,true));
-               }
-               else if(x == STATUS_INVISIBLE){
-                       Status s("","",0,true);
This page took 0.081087 seconds and 4 git commands to generate.