diff options
author | Darrell Anderson <[email protected]> | 2012-11-04 00:47:27 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-11-04 00:47:27 -0500 |
commit | 521d01750b0062d8543d7d6353afd5f84d778883 (patch) | |
tree | 57f900977926919c785e18246ac718b32d60975c | |
parent | 8ade4e21303eb4feed76a9d8b26545f65dcc708a (diff) | |
download | k3b-521d01750b0062d8543d7d6353afd5f84d778883.tar.gz k3b-521d01750b0062d8543d7d6353afd5f84d778883.zip |
Fix references to user profile directory.
-rw-r--r-- | src/k3b.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k3b.cpp b/src/k3b.cpp index 2116a9c..962caa6 100644 --- a/src/k3b.cpp +++ b/src/k3b.cpp @@ -616,7 +616,7 @@ void K3bMainWindow::readOptions() void K3bMainWindow::saveProperties( KConfig* c ) { // 1. put saved projects in the config - // 2. save every modified project in "~/.kde/share/apps/k3b/sessions/" + KApp->sessionId() + // 2. save every modified project in "~/.trinity/share/apps/k3b/sessions/" + KApp->sessionId() // 3. save the url of the project (might be something like "AudioCD1") in the config // 4. save the status of every project (modified/saved) @@ -673,7 +673,7 @@ void K3bMainWindow::readProperties( KConfig* c ) // 1. read all projects from the config // 2. simply open all of themg // 3. reset the saved urls and the modified state - // 4. delete "~/.kde/share/apps/k3b/sessions/" + KApp->sessionId() + // 4. delete "~/.trinity/share/apps/k3b/sessions/" + KApp->sessionId() TQString saveDir = KGlobal::dirs()->saveLocation( "appdata", "sessions/" + tqApp->sessionId() + "/", true ); |