diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-13 15:06:20 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-13 15:09:15 -0500 |
commit | 51e4bce4621e8b5b56ceae4fc54ee3a618c7fced (patch) | |
tree | 08a6307dced37a160865c465d14f8ba043a061ab /ksmserver/shutdowndlg.cpp | |
parent | 5c3cfcce1ce974b6be37ea4c6f7bc7decf666383 (diff) | |
download | tdebase-51e4bce4621e8b5b56ceae4fc54ee3a618c7fced.tar.gz tdebase-51e4bce4621e8b5b56ceae4fc54ee3a618c7fced.zip |
Fix references of /tmp/kde- -> /tmp/tde- to avoid potential conflicts with KDE4.
This partially resolves bug report 813.
Fix docbook references of /tmp/kde-$USER -> /tmp/tde-$USER.
Diffstat (limited to 'ksmserver/shutdowndlg.cpp')
-rw-r--r-- | ksmserver/shutdowndlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksmserver/shutdowndlg.cpp b/ksmserver/shutdowndlg.cpp index cf2985ade..e6f4fcb5a 100644 --- a/ksmserver/shutdowndlg.cpp +++ b/ksmserver/shutdowndlg.cpp @@ -536,7 +536,7 @@ KSMShutdownIPFeedback::KSMShutdownIPFeedback() // The shared pixmap is 24 bits, but we are 32 bits // Therefore our only option is to use a 24-bit Xorg application to dump the shared pixmap in a common (png) format for loading later TQString filename = getenv("USER"); - filename.prepend("/tmp/kde-"); + filename.prepend("/tmp/tde-"); filename.append("/krootbacking.png"); remove(filename.ascii()); system("krootbacking &"); @@ -594,7 +594,7 @@ void KSMShutdownIPFeedback::slotPaintEffect() } if (TQPaintDevice::x11AppDepth() == 32) { TQString filename = getenv("USER"); - filename.prepend("/tmp/kde-"); + filename.prepend("/tmp/tde-"); filename.append("/krootbacking.png"); bool success = pm.load(filename, "PNG"); if (!success) { |